Wiley documentclass 和 min 函数

Wiley documentclass 和 min 函数

我正在准备一篇基于 Wiley 模板的论文。它似乎无法识别最小函数(也无法识别最大函数):

\documentclass[AMA,final]{WileyNJD-v1}
%\usepackage{amsmath}
%\DeclareMathOperator{min}{min}
\begin{document}
\begin{equation*}
\min_{x}(a,b)
\end{equation*}
\end{document}

编译器报告:

l.6 \min
        _{x}(a,b)
? H
The control sequence at the end of the top line
of your error message was never \def'ed. If you have
misspelled it (e.g., `\hobx'), type `I' and the correct
spelling (e.g., `I\hbox'). Otherwise just continue,
and I'll forget about whatever was undefined.

我尝试添加注释行,但没有帮助。

答案1

我没有上过这门课,但 -v2 在包括 overleaf 在内的几个地方都有提供,使用 -v2 可以amsmath按预期工作

\documentclass[AMA,final]{WileyNJD-v2}
\usepackage{amsmath}

\begin{document}
\begin{equation*}
\min_{x}(a,b)
\end{equation*}
\end{document}

在此处输入图片描述

相关内容