不编号的推论

不编号的推论

我想将定理“定理 1.2.3”的推论编号为“推论 1.2.3”,而不是“推论 1.2.3.1”。我该怎么做?我正在使用 amsthm 包。

答案1

我认为你的读者不会理解。但你是法官。

\documentclass{book}
\usepackage{amsthm}

\newtheorem{theorem}{Theorem}[section]
\newtheorem*{corollary}{Corollary \thetheorem}

\begin{document}

\chapter{Test}

\section{One}

\begin{theorem}
This is a theorem.
\end{theorem}

\begin{corollary}
This is the first corollary.
\end{corollary}

\begin{corollary}
This is the second corollary.
\end{corollary}

\end{document}

在此处输入图片描述

当然,推论必须遵循它们所引用的定理,中间不能有任何其他定理。不过,允许使用文本。

相关内容