我正在写一本编程书,其中有一个我标记为的代码示例\label{ex11}
。我如何在文档的后面使用自定义文本创建指向它的链接?
例如,我在本书后面的某处写道:“正如我在中所提到的the first one-liner
,...”。
在这里,我希望将文本“ the first one-liner
”链接到\label{ex11}
。这样,当我单击该文本时,文档就会跳转到标签。有什么想法可以做到这一点吗?
如果这是 HTML,我就会这样做<a href="ex11">the first one-liner</a>
(只是为了让您更好地理解我想要做的事情)。
答案1
答案2
As I mentioned in the first one-liner, \ref{ex11}".
使用包fancyref
你可以使用它来得到类似的\vref
结果
as seen in Example 12 on the following page
as seen in Example~\vref{ex11}
所有hyperref
引用都转换为链接。\href[options]{URL}{text}
您可以将其与特定文本链接起来。