2012-07-02 95 views
3

我正在使用Sphinx生成文檔。我可以更改Sphinx中的內部鏈接標籤

Features </resources/pages/features> 
在toctree指令

the doc改變文檔的鏈接標籤在表的內容,但我怎麼可以這樣做,鏈接到內文檔章節

編輯:

這是我想什麼來實現:

doc.rst

.. toctree:: 
    :maxdepth: 2 

    Section - Information <info> 

.. _info: 

Info Section 
------------ 

這樣Section - information會出現在目錄中,但Info section將出現在文檔中本身

回答

0

我相信你可以使用標準的REST標籤。

實施例:

頁/ features.rst:

.. _label1: 

A section 
--------- 

Some text 

otherpage.rst:

See :ref:`label1` 

Cross-referencing arbitrary locations

+0

儘管如何在文檔的toctree指令中做到這一點? – jfoucher

+0

我誤解了你的問題。 – codeape

+0

不知道你是否可以使用toctree。也許你應該手動創建目錄表? – codeape