我看过这篇文章R/shiny + mathjax, not rendering math
我已经包含了
withMathJax("$a+b$"),
在我的ui.R
文件中测试LaTeX输出,但我只获得" $ a + b $"而不是渲染的公式
我也试过
withMathJax(includeMarkdown("equations.md")),
在equations.md
内我写了" a+b
"并且渲染好了,关于这个的问题是在md文件中我无法链接,例如在server.R
中:
output$formula <- renderPrint({
cat(paste0("$$Kc = \\frac{(a^{",1,"})^{",2,"}}{b^{",3,"}}$$"))
})
这样我就可以在withMathJax(textOutput("formula")),
中撰写ui.R
。
如何指示Shiny使用MathJax的本地副本?