是否可以隐藏主TOCTree中RST文件中存在的一个(或所有)子部分?
让我再描述一下:
index.rst
:doc:`Label <path/to/rst/file>`
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
.. toctree::
Label <path/to/rst/file>
Label <path/to/rst/file>
Label of Children TOCTree <path/to/rst/children/file>
儿童/ file.rst
Children Title
==============
.. toctree::
Label of Grandchildren 1
Label of Grandchildren 2
Subsection 1
------------
Subsection 2
------------
Subsection 3
------------
构建完成后,这些文件将在主TOCTree中生成:
我想隐藏分段,只保留TOCTrees,尽可能多和深。例如:
但是,如果点击与儿童标签相关联的超链接,则会像往常一样列出子部分;
“rubric”指令可以达到你想要的效果:
http://sphinx-doc.org/markup/para.html#directive-rubric
它不会以完全相同的方式生成部分标题,但至少它们不会出现在TOC中
这花了我一段时间才弄明白,但我想我终于明白了。 “技巧”是你需要在包含toc的父rst和包含该部分的子rst中设置指令。
对我来说,我将:maxdepth:1
和:titlesonly:
添加到父母的第一个toc中,然后将:titlesonly:
添加到孩子的toc中,这非常有效。这允许我在子项中具有分层子格式格式,该格式正确呈现,而不会显示在TOC中。
您可以使用maxdepth
的toctree
参数来设置TOC的深度:
.. toctree::
:maxdepth: 2
尝试将------------------更改为*****************以获取第1小节等。此外,您可以制作多个toctrees每个都有自己的maxdepth,例如
.. toctree::
:maxdepth: 2
Label <path/to/rst/file>
Label <path/to/rst/file>
.. toctree::
:maxdepth: 1
Label of Children TOCTree <path/to/rst/children/file>