documentclass 使用 amsmath,无章节

documentclass 使用 amsmath,无章节

每天可能有成千上万的人在某个地方用方程式写出一些数学现象的简短解释,包括对齐可能性、引理和定理,这种情况可能确实存在。使用 amsmath 很有用,但在简短的文档中使用章节是毫无意义且不合适的。

这是我的问题:我希望我的第一个引理编号为 LEMMA 1,但是,无论我如何尝试,我都会得到烦人的 LEMMA 0.1。

有什么建议么?

答案1

你肯定已经声明了你的引理编号是在章节编号之内,也就是说,

\newtheorem{lem}{Lemma}[section]

事实上,以下 MWE

\documentclass{article}

\newtheorem{lem}{Lemma}[section]

\begin{document}
\begin{lem}
  Hello
\end{lem}
\end{document} 

生产

在此处输入图片描述

相反,您必须将其定义为不遵循任何现有的计数器:

\newtheorem{lem}{Lemma}

在这种情况下,MWE

\documentclass{article}

\newtheorem{lem}{Lemma}

\begin{document}
\begin{lem}
  Hello
\end{lem}
\end{document} 

生产

在此处输入图片描述

相关内容