gpt4 book ai didi

r - 在 Shiny 应用程序的 UI 中为文本添加新行

转载 作者:行者123 更新时间:2023-12-04 00:04:43 25 4
gpt4 key购买 nike

有没有办法在通过 UI 放置文本时添加新行?

我目前有类似的东西

mainPanel(
h3("This is my app!\n\n"),
h4("Download your data using the choose file button\n\n"),
h4("Thank you for using the app!")
)

但新线路似乎不起作用。

最佳答案

\n在 Shiny 的应用程序中不起作用。
对于新行,您可以使用 HTML 标签 <br/> :

  mainPanel(
HTML(
paste(
h3("This is my app!"),'<br/>',
h4("Download your data using the choose file button"),'<br/>',
h4("Thank you for using the app!")
)
)
)

关于r - 在 Shiny 应用程序的 UI 中为文本添加新行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31421270/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com