我将有一个定理、引理或推论,并且它会被编号,比如说 2.2.3...不幸的是,每个对任何定理、引理或推论的引用都只是简单地说 2.2...它似乎正在截断最后一个数字!
以下是我迄今为止所做工作的代表代码……
\documentclass[12pt]{amsart}
\newtheorem{theorem}{Theorem}[section]
\begin{document}
\chapter
\section
\begin{theorem} This is the theorem.
\begin{proof} This is the proof.
\end{proof}
\end{theorem}
\label{thm-01}
Now we reference Theorem \ref{thm-01}
\end{document}
这个定理标明自己是定理 1.1.1,但是当我在文档后面引用它时,它显示“不,我们引用定理 1.1”
对于如何解决这个问题,有任何的建议吗?
答案1
\end{proof} \end{corollary} \label{cor-01} And
你的\label
是在推论之外,所以它标记了包含部分。把它放在它标记的东西里面。