在闪亮的应用程序中titlePanel中的斜体字体

drm*_*iod 3 r shiny

有没有办法让我的斜体字shiny titlePanel

我试过了

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)
Run Code Online (Sandbox Code Playgroud)

这打印标题为Old <em>Faithful Geyser</em> Data.在em没有得到解释.我做错了什么或者没有办法在标题中使用斜体字体?

s.b*_*nel 5

你好试试这应该工作

titlePanel( div(HTML("Old <em>Faithful Geyser</em> Data")))
Run Code Online (Sandbox Code Playgroud)

  • 您可以简单地使用 `p(strong("bold font "), em("italic font")),`,请参阅 https://bookdown.org/wei Cheng/shinyTutorial/ui.html。其作品。 (3认同)