如何使用bookdown创建单个输出文档,例如使用其bookdown::html_document2格式,并且在输出文档中的某个位置仍然有目录?

例如,我从https://github.com/tidyverse/style checkout 内容,然后运行

Rscript -e "bookdown::render_book('index.Rmd', 'bookdown::html_document2')"

然后,我得到了所需的_main.html,包含所有章节的所有文本,但是没有TOC。

最佳答案

您可以使用...的点(bookdown::html_document2)参数将toc = TRUE传递给rmarkdown::html_document:

Rscript -e "bookdown::render_book('index.Rmd', bookdown::html_document2(toc = TRUE))"

关于r - Bookdown:带有html_document2的目录,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/48796293/

10-12 17:17