\ref 不起作用

\ref 不起作用

我想写一篇论文。有三章。在第一章中,我得到了一个推论,我将其标记为以下内容:

Corollary 1 \label{cor:1}

在第二章中,我想引用“推论1”,我输入

Corollary  \ref {cor:1}.

运行pdflatex后显示如下信息:

推论??。

没有数字“1”

我该如何解决这个问题?

答案1

\label这是关于在环境内部使用corollary由包定义的MWE amsthm。显然,从问题来看,没有使用环境来定义推论,从而解释了命令的不期望输出\ref

\documentclass{article}
\usepackage{amsthm}
\newtheorem{corollary}{Corollary}
\begin{document}
\begin{corollary}
    This is a corollary
    \label{the-corollary}
\end{corollary}
Let's make a reference to corollary~\ref{the-corollary}.
\end{document}

在此处输入图片描述

相关内容