如何更改 R Bookdown (GitBook) 中的 TOC 深度?
How to change TOC depth in R Bookdown (GitBook)?
我通过 R bookdown 使用 GitBook 格式。我需要在目录 (TOC) 的 table 中使用至少四个级别。默认值为三个。如何更改 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
无效。
尝试将以下内容添加到您的 _output.yml
文件中:
bookdown::gitbook:
toc_depth: 2
我通过 R bookdown 使用 GitBook 格式。我需要在目录 (TOC) 的 table 中使用至少四个级别。默认值为三个。如何更改 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
无效。
尝试将以下内容添加到您的 _output.yml
文件中:
bookdown::gitbook:
toc_depth: 2