在r笔记本中添加目录

时间:2017-08-22 19:49:23

标签: r rnotebook

当我向r markdown文件添加目录时似乎没有问题但是当我将它添加到r笔记本时没有任何反应:

output: 
   html_document:
   html_notebook:
      toc: true
      depth: 3
      theme: united

是否可以将目录添加到R笔记本中,还是必须将其作为降价文件?

3 个答案:

答案 0 :(得分:3)

我最后必须这样格式化:

output: 
  html_document:
    toc: yes
  html_notebook:
    theme: united
    toc: yes

答案 1 :(得分:1)

尝试这样的格式:

title: "Title"
output:
  html_notebook:
    theme: united
    toc: yes

答案 2 :(得分:1)

html_document:后面没有任何属性,这就是html_notebook设置未正确执行的原因。

删除html_document:或在其下面指定一些属性。