如何在 bookdown 中使用新的 bs4() 主题?
How can I use the new bs4() theme in bookdown?
如何在 bookdown 中使用 bs4
主题,例如用于 R4DS book
的主题
在 _output.yaml
中,我看到了以下代码,但它不适用于我的项目。
bookdown::bs4_book:
theme:
primary: "#637238"
repo: https://github.com/hadley/r4ds
includes:
in_header: [ga_script.html]
我在尝试构建图书时遇到此错误
Error: 'bs4_book' is not an exported object from 'namespace:bookdown'
Execution halted
我通过执行以下操作让它工作:
运行以下
remotes::install_github("rstudio/bslib")
install.packages("downlit")
remotes::install_github("rstudio/bookdown")
将 _output.yaml
更改为以下内容:
bookdown::bs4_book:
theme:
primary: "#637238"
如何在 bookdown 中使用 bs4
主题,例如用于 R4DS book
在 _output.yaml
中,我看到了以下代码,但它不适用于我的项目。
bookdown::bs4_book:
theme:
primary: "#637238"
repo: https://github.com/hadley/r4ds
includes:
in_header: [ga_script.html]
我在尝试构建图书时遇到此错误
Error: 'bs4_book' is not an exported object from 'namespace:bookdown'
Execution halted
我通过执行以下操作让它工作:
运行以下
remotes::install_github("rstudio/bslib")
install.packages("downlit")
remotes::install_github("rstudio/bookdown")
将 _output.yaml
更改为以下内容:
bookdown::bs4_book:
theme:
primary: "#637238"