我通过 R bookdown 使用 GitBook 格式。我需要在目录(TOC)中至少使用四个级别。默认值为3。如何更改TOC的深度?
更新
现在我的_output.yml
文件的toc相关内容如下所示:
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
不起作用。
答案 0 :(得分:4)
尝试将以下内容添加到_output.yml
文件中:
bookdown::gitbook:
toc_depth: 2