最佳答案
我正在使用 RStudio 编写标记文档,并希望在文档顶部添加目录(TOC) ,以便用户可以点击相关部分进行阅读。有一些相关的例子,但现在我似乎找不到他们。请注意,我不使用 pandoc
和 Rmd
和 knitr
是相当新的。有没有办法在不使用 pandoc
的情况下添加 TOC?如果使用 pandoc
是必须的,那么哪些函数是相关的?
下面是一个小样本页面:
---
title: "Sample Document"
output:
html_document:
toc: true
theme: united
---
Header 1
---------------
This is an R Markdown document. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see <http://rmarkdown.rstudio.com>.
## Header 2
When you click the **Knit** button a document will be generated that includes both content as well as the output of any embedded R code chunks within the document. You can embed an R code chunk like this:
```{r}
summary(cars)
```
You can also embed plots, for example:
```{r, echo=FALSE}
plot(cars)
```
### Header 3
Note that the `echo = FALSE` parameter was added to the code chunk to prevent printing of the R code that generated the plot.
我试过在 RStudio v0.98.864中运行它,它起作用了!但可惜的是,它不能在0.98.501和0.98.507上运行。我在0.98.501中写我的论文,在更新了 RStudio 之后,我的一些分析没有起作用。所以,我又回到了0.98.501。 我现在应该做什么? 我真的想要 TOC,但又不损害其他分析的结果。