マークダウンドキュメントの作成にRStudioを使用しており、ユーザーが関連するセクションをクリックして読むことができるように、ドキュメントの上部に目次(TOC)を追加したいと考えています。rpubsにいくつかの関連する例がありましたが、今はそれらを見つけることができないようです。私は使用しておらずpandoc
、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.
これをRStudiov 0.98.864で実行してみましたが、機能しました。しかし残念ながら、0.98.501と0.98.507では機能しませんでした。0.98.501で論文に取り組んでいますが、RStudioを更新した後、一部の分析が機能しませんでした。それで、私は0.98.501に戻りました。私は今どうすればいい?私は本当に目次が欲しいのですが、他の分析の出力を損なうことはありません。
toc: true
YAMLではフロントマターがそれを行う必要があります。