如何将标签与非部分文档元素关联?

如何将标签与非部分文档元素关联?

可能重复:
hyperref 产生的 \label 链接目标不正确

LaTeX 中的标签和链接令我困惑。

我有类似以下内容:

\section{main section}
\label{sec:mainsection}
 %lots of text
\label{SomethingDescribedButNotDocumentElement}
%more text

我希望能够链接到第二个标签,但似乎这些标签与前一个文档元素(在本例中是主要部分)相关联

因此类似于:

\hyperref[SomethingDescribedButNotDocumentElement]{link to 2nd label}

但这跳到了sec:mainsection标签上。

  • 我如何链接到我的文档的任意部分(可能未由sectionfigure等描述)?

答案1

您可以通过 生成新锚点\phantomsection。带有可选参数的语法\hyperref可用于将任意文本链接到此位置:

\phantomsection
\label{SomethingDescribedButNotDocumentElement}

\hyperref[SomethingDescribedButNotDocumentElement]{Something}

相关内容