带有分页符的 Hyperref 短语也会使脚注超链接

带有分页符的 Hyperref 短语也会使脚注超链接

使用 hyperref 包中的命令 \hyperref[link]{text} 时,如果文本跨页并且第一页有脚注,那么该脚注也会被错误地设为超链接。

我觉得这像是 bug。有什么好的修复建议吗?

梅威瑟:

\documentclass[11pt,a4paper]{article}

\usepackage{hyperref,lipsum,amsmath}

\begin{document}

First an equation:
\begin{equation}
    x=y
    \label{eq}
\end{equation}
Now, a sentence.\footnote{A footnote.}

\lipsum[1-4]

\hyperref[eq]{Finally, a sentence hyperlinked to the equation above; because this hyperref-ed sentence breaks across the page, the unrelated footnote also becomes hyperlinked.}

\end{document}

相关内容