R语言 在闪亮的应用程序内的titlePanel中使用斜体字体

2skhul33  于 2023-09-27  发布在  其他
关注(0)|答案(2)|浏览(86)

有没有办法让斜体字在我的shinytitlePanel
我试

library(shiny)

# Define UI for application that draws a histogram
ui <- shinyUI(fluidPage(

   # Application title
   titlePanel("Old <em>Faithful Geyser</em> Data"),

   # Sidebar with a slider input for number of bins
   sidebarLayout(
      sidebarPanel(
         sliderInput("bins",
                     "Number of bins:",
                     min = 1,
                     max = 50,
                     value = 30)
      ),

      # Show a plot of the generated distribution
      mainPanel(
         plotOutput("distPlot")
      )
   )
))

# Define server logic required to draw a histogram
server <- shinyServer(function(input, output) {

   output$distPlot <- renderPlot({
      # generate bins based on input$bins from ui.R
      x    <- faithful[, 2]
      bins <- seq(min(x), max(x), length.out = input$bins + 1)

      # draw the histogram with the specified number of bins
      hist(x, breaks = bins, col = 'darkgray', border = 'white')
   })
})

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

然后将标题打印为Old <em>Faithful Geyser</em> Dataem不会被解释。是我做错了什么,还是没有办法在标题中使用斜体字体?

m3eecexj

m3eecexj1#

你好试试这个它应该工作

titlePanel( div(HTML("Old <em>Faithful Geyser</em> Data")))
lsmepo6l

lsmepo6l2#

或者,您可以使用em()而不是嵌套在HTML()中:

titlePanel(div("Old", em("Faithful Geyser"), "Data"))

相关问题