假设我有以下index.rst
:
Some global topic
=====================
.. toctree::
:glob:
nested/index
Global topic introduction
------------------------
nested/index.rst
:
Some sub-topic
==============
我希望TOC像:
相反,我得到以下内容:
如何首先显示本地部分,并在其后显示链接页面?
答案 0 :(得分:0)
这不是一个完美的解决方案,但是怎么样
.. contents::
:local:
.. toctree::
:glob:
nested/index
那会给你: