交叉引用自定义环境

交叉引用自定义环境

我已经定义了一个定理类环境(“声明”),我想交叉引用它。然而,这似乎不起作用,因为我得到了在此处输入图片描述

在常规的两次运行之后。我的代码是

\documentclass{article}
\newtheorem{claim}{Claim}

\begin{document}

\begin{claim}
  \label{prop_sols}
  This is my claim.
\end{claim}

Note that the reference to the previous claim (\ref{prop_sols]}) doesn't compile.

\end{document}

答案1

在您的代码中,您有\ref{prop_sols]}]不应该在那里。

相关内容