在发光仪表板的框中包装方程式

时间:2019-08-22 12:58:57

标签: r shiny shinydashboard

我在shinydashboard中遇到一个问题,当我写的方程式放在box中时,它们没有包装。这些方程超出了box的限制。 MWE:

library(shinydashboard)
library(shiny)

# UI
ui <- dashboardPage(
    dashboardHeader(),

    dashboardSidebar(),

    dashboardBody(
        fluidRow(
            column(width = 6,
                   box("Long Equation", width = 12,

                       h3(withMathJax("$$ \\alpha  + \\beta + \\gamma + \\delta + \\alpha  + \\beta + \\gamma + \\delta + \\alpha  + \\beta + \\gamma + \\delta + $$")))

                       )  
        )
    )
)

# Server
server <- function(input, output) {

}

# Run the application 
shinyApp(ui = ui, server = server)

此示例产生:

enter image description here

我在boxes中的数据框也遇到了同样的问题,但是无法在线找到任何答案。有没有人能确保box的内容不会超出box的范围?

1 个答案:

答案 0 :(得分:2)

以下是要使用的MathJax配置:

sub

https://github.com/fgnass/node-dev