我正在寻找一种使用字母而不是数字来计数定理和命题的方法。在这个网站上寻找,我找到了以下代码:
\newtheorem{thma}{定理}
\newtheorem{propa}{命题}
\renewcommand{\thethma}{\Alph{thma}}
\renewcommand{\thepropa}{\Alph{propa}}
但是定理和命题是分开计算的。有没有像下面这样计算的方法?
定理A
命题 B
定理C
答案1
这将起作用:
\documentclass{article}
\usepackage{amsmath}
\newtheorem{thma}{Theorem}
\newtheorem{propa}[thma]{Proposition}
\renewcommand{\thethma}{\Alph{thma}}
\renewcommand{\thepropa}{\Alph{propa}}
\begin{document}
\begin{thma}
AAA
\end{thma}
\begin{propa}
BBB
\end{propa}
\end{document}
答案2
这应该是任何提到如何工作的说明的一部分\newtheorem
。在这种情况下,thma
和propa
环境也定义了它们自己的单独计数器。但使用正确的语法,你可以告诉propa
使用相同的计数器thma
\newtheorem{thma}{Theorem}
\newtheorem{propa}[thma]{Proposition}
\renewcommand{\thethma}{\Alph{thma}}
由于两者使用的不是同一个计数器,因此不再\thepropa
有