LaTeX 中的标签和链接令我困惑。
我有类似以下内容:
\section{main section}
\label{sec:mainsection}
%lots of text
\label{SomethingDescribedButNotDocumentElement}
%more text
我希望能够链接到第二个标签,但似乎这些标签与前一个文档元素(在本例中是主要部分)相关联
因此类似于:
\hyperref[SomethingDescribedButNotDocumentElement]{link to 2nd label}
但这跳到了sec:mainsection
标签上。
- 我如何链接到我的文档的任意部分(可能未由
section
或figure
等描述)?
答案1
您可以通过 生成新锚点\phantomsection
。带有可选参数的语法\hyperref
可用于将任意文本链接到此位置:
\phantomsection
\label{SomethingDescribedButNotDocumentElement}
\hyperref[SomethingDescribedButNotDocumentElement]{Something}