我在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)
此示例产生:
我在boxes
中的数据框也遇到了同样的问题,但是无法在线找到任何答案。有没有人能确保box
的内容不会超出box
的范围?