我正在用Rstudio构建bookdown::html_document2
,但似乎无法使用Rstudio添加目录。
我发现了与此相关的问题(Bookdown: TOC with html_document2),但是当他们使用命令行时,我使用Rstudio的Knit
按钮来编织文档。就我而言,它会产生错误:
Error in yaml::yaml.load(string, ...) :
Scanner error: mapping values are not allowed in this context at line 4, column 33
Calls: <Anonymous> ... parse_yaml_front_matter -> yaml_load_utf8 -> <Anonymous>
Execution halted
要重现该错误,请尝试:
---
title: "main title"
author: "Me"
date: "September 26, 2018"
output: bookdown::html_document2:
toc=TRUE
---
# title 1
# tt
# rr
## rrr
在Rstudio中并点击Knit
任何想法如何使其起作用? 谢谢
答案 0 :(得分:2)
您需要花更多的时间来学习the YAML syntax。
---
title: "main title"
author: "Me"
date: "September 26, 2018"
output:
bookdown::html_document2:
toc: true
---
# title 1
# tt
# rr
## rrr