我正在尝试使用不同的主题来改变flexdashboard的外观。出于某种未知的原因,该选项
output:
flexdashboard::flex_dashboard:
theme: <<theme name>>似乎没有任何改变。输出看起来仍然是默认的。我甚至尝试从flexdashboard目录复制css文件,并将链接直接放到该文件中
output:
flexdashboard::flex_dashboard:
css: <<css file>>但同样看不到任何变化。执行rmarkdown::render时也没有错误。
有什么想法吗?
发布于 2019-03-22 22:29:18
确保缩进是正确的:
output:
flexdashboard::flex_dashboard:
theme: united发布于 2021-03-25 06:18:31
title: "Sample Dashboard"
output:
flexdashboard::flex_dashboard:
theme: spacelab
vertical_layout: fill
orientation: columns
runtime: shiny
---可用的主题包括: default、cerulean、journal、flatly、darkly、readable、spacelab、united、cosmo、lumen、paper、sandstone、simplex、yeti。
https://stackoverflow.com/questions/54871777
复制相似问题