使用定理环境但定理无法正确显示

使用定理环境但定理无法正确显示

我正在使用一个类文件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}

然后它在 pdf 文件中打印为: 在此处输入图片描述

我可以知道如何纠正吗?谢谢。

答案1

该类不兼容,amsthm因为它使用(过时的)包theorem并且已经定义了theorem环境。

所以就这么做吧

\documentclass{aptpub}
\usepackage{amsfonts}
\usepackage{mathtools}

\begin{document}

\begin{theorem}\label{t1}
    abc=xyz
\end{theorem}

\end{document}

这样你就走上了正确的道路。

相关内容