在flexdashboard中包含目录

时间:2017-08-30 14:11:38

标签: r flexdashboard

我想在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页中,我不需要目录。

我该怎么做?

谢谢。

0 个答案:

没有答案