我想在flexdashboard文档中包含一个目录。
完全像我们在文档中看到的目录:http://rmarkdown.rstudio.com/flexdashboard/using.html
我试图在经典的RMarkdown文档中添加toc:true,但它似乎不起作用。
---
title: "Reporting"
output:
flexdashboard::flex_dashboard:
orientation: rows
vertical_layout: scroll
toc: true
---
# Page1
Row
-----------------------------------------------------------------------
## chap1
### chart 1
```{r cars1, echo=FALSE}
plot(pressure)
```
### chart 2
```{r cars2, echo=FALSE}
plot(pressure)
```
Row
-----------------------------------------------------------------------
## chap2
### chart 3
```{r pressure, echo=FALSE}
plot(pressure)
```
# Page 2
Row
-----------------------------------------------------------------------
### p2 chap 1
```{r test}
plot(pressure)
```
Row
-----------------------------------------------------------------------
### p2 graph2
```{r test2, echo=FALSE}
plot(pressure)
```
在这个例子中,我想在第1页中看到一个包含两行的目录:chap1和chap2。在第2页中,我不需要目录。
我该怎么做?
谢谢。