Cant use Ref with a Label using Sphinx doc

I have a problem with using Sphinx-doc's Ref function, i put a label above a paragraph and then i try to link to that label from another doc but inside the same project.

The label i use in one document:

.. _hal_1k_1p:

And the Ref i try to use to link to that label:

:ref:`Link title hal_1k_1p`

But i only get this error message when building the doc:

WARNING: undefined label: link title hal_1k_1p (if the link has no caption the label must precede a section header)

What am i doing wrong?


Okay, looking at http://sphinx-doc.org/markup/inline.html#role-ref you need to have this:

:ref:`Link title <ha1_1k_1p>` 

to link to that label.

Ensure you have angle brackets surrounding your label like so: <label>

链接地址: http://www.djcxy.com/p/75498.html

上一篇: 在python docstring中引用reST标签

下一篇: 使用狮身人面像文档不能使用带有标签的Ref