我正在使用一个类文件aptpub.cls
(应用概率,可以在这里),并且该类文件中定理环境的建议之一是\newtheorem{theorem}{\noindent Theorem}
。我也在使用amsmath
包。因此,如果我将上述环境用于定理,并且如果该定理的代码是
\documentclass{aptpub}
\usepackage{amsthm}
\usepackage{amsfonts}
\usepackage{mathtools}
\newtheorem{theorem}{\noindent Theorem}
\begin{document}
\begin{theorem}
\label{t1}
abc=xyz
\end{theorem}
\end{document}
我可以知道如何纠正吗?谢谢。
答案1
该类不兼容,amsthm
因为它使用(过时的)包theorem
并且已经定义了theorem
环境。
所以就这么做吧
\documentclass{aptpub}
\usepackage{amsfonts}
\usepackage{mathtools}
\begin{document}
\begin{theorem}\label{t1}
abc=xyz
\end{theorem}
\end{document}
这样你就走上了正确的道路。