hyperref 宏包中交叉引用的超链接不能实现正确跳转

2021-02-14 17:37发布

## 编译环境 操作系统 * [x] Windows 7/8/10 * [ ] macOS * [ ] Linux Tex发行版 * [x] TexLive `2020` * [ ] MikTeX ...

## 编译环境 操作系统 * [x] Windows 7/8/10 * [ ] macOS * [ ] Linux Tex发行版 * [x] TexLive `2020` * [ ] MikTeX `版本号` * [ ] CTeX ## 我的问题 - 如以下代码所示,编译后点击`\eqref{eq:gougu1}`、`\eqref{eq:gougu2}`、`\eqref{eq:gougu3}`、`\eqref{eq:gougu5}`能分别正确的跳转到`\label{eq:gougu1}`、`\label{eq:gougu2}`、`\label{eq:gougu3}`、`\label{eq:gougu5}`。 - 但当点击`\eqref{eq:gougu4}`时却只能跳转到`\label{eq:gougu3}`的位置。 - 原因可能在于我在`\label{eq:gougu3}`设置了自定义的`\tag{$ \heartsuit $}`,但我目前还无法找到解决方案能让`\eqref{eq:gougu4}`正确跳转到`\label{eq:gougu4}`。希望大佬们能有解决方案。 > - 我将源代码放至 overleaf 中运行,问题依然存在。 > - 我使用了`tlmgr update --all`更新所有宏包(包括 hyperref 宏包),问题依然存在。 ```tex %=============导言区=============== \documentclass[UTF8]{article} \usepackage[a4paper]{geometry} \usepackage{lipsum} \usepackage{amsmath} \usepackage{hyperref} \hypersetup{ colorlinks=true, urlcolor={[RGB]{25, 128, 230}}, linkcolor={[RGB]{25, 128, 230}}, citecolor={[RGB]{25, 128, 230}} } %=============正文区=============== \begin{document} \lipsum[1] \begin{equation}\label{eq:gougu1} a^2 + b^2 = c^2 \end{equation} \lipsum[2-3] \begin{equation}\label{eq:gougu2} a^2 + b^2 = c^2 \end{equation} \lipsum[4-7] \begin{equation}\label{eq:gougu3} a^2 + b^2 = c^2 \tag{$ \heartsuit $} \end{equation} \lipsum[8-15] \begin{equation}\label{eq:gougu4} a^2 + b^2 = c^2 \end{equation} \lipsum[8-12] \begin{equation}\label{eq:gougu5} a^2 + b^2 = c^2 \end{equation} \lipsum[8-12] This is a cross-reference for formula \eqref{eq:gougu1}. This is a cross-reference for formula \eqref{eq:gougu2}. This is a cross-reference for formula \eqref{eq:gougu3}. This is a cross-reference for formula \eqref{eq:gougu4}. This is a cross-reference for formula \eqref{eq:gougu5}. \end{document} ```
2条回答
OsbertWang - 目前是一名 LaTeX 学徒
2021-02-14 19:54 .采纳回答
我给一个最小工作示例 ``` \documentclass{article} \usepackage{amsmath} \usepackage{hyperref} \begin{document} \begin{equation*} a\tag{$ \heartsuit $}\label{eq:gougu3} \end{equation*} \clearpage \begin{equation} b\label{eq:gougu4} \end{equation} \clearpage This is a cross-reference for formula \eqref{eq:gougu3}. This is a cross-reference for formula \eqref{eq:gougu4}. \end{document} ``` 参考的是 https://tex.stackexchange.com/questions/210480/incorrect-reference-when-combining-amsmath-hyperref-and-tag

一周热门 更多>