在使用Python Sphinx制作乳胶文件时,我想删除给定章节的章节号,因为严格来说,它们只是描述后续章节的过渡文本。
例如,我的toctree如下
.. toctree::
:maxdepth: 3
intro
part_one
chapter_one
chapter_two
part_two
chapter_three
chapter_four
此处,intro
,part_one
和part_two
是不属于本章内容的描述性文本。因此,我不希望他们有章号,同时又不打扰“真实”章的编号。
我该如何实现?
答案 0 :(得分:0)
开箱即用Sphinx是不可能的。编号全无。请参见http://www.sphinx-doc.org/en/master/usage/restructuredtext/directives.html#directive-toctree
下的“部分编号”