假设我有一个普通的文档部分和另外一个词汇表,都在同一个sphinx项目中构建。
有没有办法将一个单词与另一个页面上的标题联系起来,而不使用普通的静态链接?
如果除了静态链接之外别无其他方式,是否有可能引入ID?
答案 0 :(得分:2)
您可以使用cross references创建指向项目中任意位置的链接。例如:
.. _my-reference-label:
Section to cross-reference
--------------------------
This is the text of the section.
It refers to the section itself, see :ref:`my-reference-label`.