0

タイトルのとおり、toc: true や toc_float: true などの YAML タグを RNotebook ファイルで使用できるようにしたいと考えています。現在、私はこれを持っています:

```

タイトル: 「R ノートブック」 出力: html_notebook:

toc:true

セクション 1

これはR マークダウンノートブックです。W

第2節

{r} plot(cars) ```

次のエラーが表示されます: Error in yaml::yaml.load(string, ...) : Scanner error: while scanning for the next token at line 3, column 1found character that cannot start any token at line 3, column 1

ドキュメントは読み込まれますが、目次はありません。

4

1 に答える 1

0

rstudioの基本的な例からこの例を試してください

---
title: "R Notebook"
output:
  html_notebook:
    toc: yes
    toc_float: yes
  html_document:
    toc: yes
---

# blabla section 1

This is an [R Markdown](http://rmarkdown.rstudio.com) Notebook. When you execute code within the notebook, the results appear beneath the code. 

Try executing this chunk by clicking the *Run* button within the chunk or by placing your cursor inside it and pressing *Ctrl+Shift+Enter*. 

```{r}
plot(cars)
```

# blabla section 2

Add a new chunk by clicking the *Insert Chunk* button on the toolbar or by pressing *Ctrl+Alt+I*.

When you save the notebook, an HTML file containing the code and output will be saved alongside it (click the *Preview* button or press *Ctrl+Shift+K* to preview the HTML file).
于 2017-08-03T11:02:31.850 に答える