我正在编写一个闪亮的应用程序,其中包括MathJax中的\cancel
。我不知道如何让它工作。根据下面的链接,我想我必须加载cancel
TeX扩展,但我不知道如何加载。
library(shiny)
ui <- fluidPage(
withMathJax(),
div("$$1+2=3$$"), #Works
div("$$\\cancel{10a}$$") #Doesnt work
)
server <- function(input, output, session) {
}
shinyApp(ui, server)
1条答案
按热度按时间z4iuyo4d1#