10

我通过R bookdown使用GitBook格式。我需要在目录 (TOC) 中使用至少四个级别。默认值为三个。如何更改 TOC 的深度?


更新

现在我的文件中与 toc 相关的内容_output.yml如下所示:

bookdown::gitbook:
  config:
    toc_depth: 4
    toc:
      collapse: section
      scroll_highlight: yes
      before: |
        <li><a href="../index.html"><b>Main</b></a></li>
      after: |
        <li><a href="../index.html"><b>Main</b></a></li>

config: toc_depth: 4不起作用。

4

1 回答 1

11

尝试将以下内容添加到您的_output.yml文件中:

bookdown::gitbook:
    toc_depth: 2
于 2018-04-22T13:40:51.810 回答