标签定理环境错误

标签定理环境错误

更新 我发现,如果我在定理环境的开头使用 \enumerate,则标签的超链接不会将我带到正确的位置。例如:

\documentclass{amsart}
\usepackage{amsmath}
\usepackage{hyperref}
\theoremstyle{plain}
\newtheorem{thm}[subsubsection]{Theorem}
\theoremstyle{definition}
\newtheorem{rmk}[subsubsection]{Remark}

\begin{document}

abc

\newpage 


\begin{thm}[cf. Theorem 1.1.1 in XYZ]\label{thm:important-theorem}
\begin{enumerate}
    \item this
    \item is important
\end{enumerate}
\end{thm}

\begin{rmk}
Note that Theorem \ref{thm:important-theorem} is an important theorem.
\end{rmk}

\end{document}

如果我点击评论中的超链接,它会带我到第一页。有没有简单的方法可以解决这个问题?

相关内容