我需要使用指示的类(你可以在这里找到) 提交论文。但是,该类对定理、命题等的证明语法很奇怪(这是众所周知的事实)。通常的修复方法如下所示,但这次我在每个定理、命题等后面都得到了两个括号,如图所示。我尝试移动 \let's 和 \usepackage{amsthm} 的顺序,但没有成功。非常感谢任何帮助。
\documentclass[mnsc,blindrev]{informs4}
\let\proof\relax
\let\endproof\relax
\let\theoremstyle\relax
\usepackage{amsthm}
\usepackage{comment}
\TheoremsNumberedThrough
\ECRepeatTheorems
\EquationsNumberedThrough
\begin{document}
\begin{theorem}
The sum of the areas of the two squares on the legs ($a$ and $b$) equals the area of the square on the hypotenuse ($c$).
\end{theorem}
\begin{proof}
Just because.
\end{proof}
\end{document}