Sphinx:首先列出本地部分,最后在TOC中链接页面

时间:2016-08-23 20:49:29

标签: python python-sphinx restructuredtext

假设我有以下index.rst

Some global topic
=====================

.. toctree::
  :glob:

  nested/index

Global topic introduction
------------------------

nested/index.rst

Some sub-topic
==============

我希望TOC像:

  • 一些全球话题
    • 全球主题介绍
    • 一些子主题

相反,我得到以下内容:

  • 一些全球话题
    • 一些子主题
    • 全球主题介绍

如何首先显示本地部分,并在其后显示链接页面?

1 个答案:

答案 0 :(得分:0)

这不是一个完美的解决方案,但是怎么样

.. contents::
   :local:

.. toctree::       
   :glob:
    nested/index

那会给你:

  • 一些全球话题
    • 全球主题介绍
  • 一些子主题