我知道如何创建指向 URL 或更远地方的链接落后在使用该包的 LaTeX 文档中hyperref
。但是,如果我希望将读者重定向到更远的地方向前在文档中,我担心找不到\hypertarget
或。我的这种期望错了吗?如果没有,有没有办法实现这样的链接?\label
答案1
这是一个“MWE”,因为它表明文档中后面出现的标签可以在文档中前面的位置被引用。
这表明,那\hypertarget
也能\hyperlink
正常工作。
使用其中一个 latex 可执行文件 (最好是 pdflatex/xelatex/lualatex) 编译两次
\documentclass{article}
\usepackage{blindtext}
\usepackage{hyperref}
\begin{document}
\section{First}
In \ref{section::first_sub} we will see that...
\hyperlink{dummytarget}{Click me}
\blindtext[20]
\section{Second}
\subsection{First sub of second section} \label{section::first_sub}
\blindtext[5]
\hypertarget{dummytarget}{Here is a dummy link target}
\end{document}