我无法使用呈现为rmarkdown
的{{1}}创建免费的内容浮动表。这是文本:
html
然后,我使用---
title: "example"
date: "22 January 2019"
output:
html_document:
toc: true
toc_float: true
toc_collapsed: true
---
```library(rmarkdown)```
```library(knitr)```
##<span style="color:darkgreen">1. XXX</span>
```c("a", "b", "c")```
```{r}
将文档呈现为html
。正确创建了该文档,但该文档不包含浮动目录。这种语法有问题吗?
答案 0 :(得分:0)
YAML标头中的缩进很重要:
---
title: "example"
date: "22 January 2019"
output:
html_document:
toc: true
toc_float: true
toc_collapsed: true
---