마크 다운 문서를 작성하는 데 RStudio를 사용하고 있으며 사용자가 읽기를 위해 관련 섹션을 클릭 할 수 있도록 문서 상단에 목차 (TOC)를 추가하고 싶습니다. rpub에 관련된 몇 가지 예가 있었지만 지금은 찾을 수없는 것 같습니다. 나는 사용하지 않으며 &를 pandoc
처음 사용합니다 . 사용하지 않고 TOC를 추가하는 방법이 있습니까? 사용 이 필수라면 어떤 기능이 관련이 있습니까?Rmd
knitr
pandoc
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 v 0.98.864에서 실행 해 보았고 작동했습니다! 하지만 슬프게도 0.98.501과 0.98.507에서는 작동하지 않았습니다. 0.98.501에서 논문을 작성 중이며 RStudio를 업데이트 한 후 일부 분석이 작동하지 않았습니다. 그래서 다시 0.98.501로 되돌 렸습니다. 이제 어떻게해야합니까? 나는 정말로 TOC를 원하지만 다른 분석의 결과물을 손상시키지 않습니다.
toc: true
YAML 전면에서 그것을해야합니다.