在Shiny withMathJax中显示LaTeX公式不能正常工作,如何在Shiny中使用本地MathJax?

时间:2017-08-11 02:51:44

标签: r shiny shiny-server

我看过这篇文章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的本地副本?

0 个答案:

没有答案