根据设置 Sphinx 文档在包之间链接的文档,我添加了
intersphinx_mapping = {'python': ('http://docs.python.org/2', None),
'numpy': ('http://docs.scipy.org/doc/numpy/', None),
'scipy': ('http://docs.scipy.org/doc/scipy/reference/', None),
'matplotlib': ('http://matplotlib.sourceforge.net/', None)}
到我的 conf.py
,但似乎不能得到除了 Python 本身以外的任何项目的链接
:term:`svg graphics <matplotlib:svg>`
只是把我带到索引页面,没有添加预期的 #term-svg
锚,我甚至不能找到 scipy
的术语表,也不知道如何确定包支持哪些 :ref:
或 :term:
。
在哪里可以找到关于如何在 numpy
、 scipy
和 matplotlib
中为 :ref:
和 :term:
指定目标的说明?
就此而言,我如何链接到 Sphinx 本身
intersphinx_mapping['sphinx'] = ('http://sphinx-doc.org/', None)
还有
:ref:`Intersphinx <intersphinx>`
没用。