jams-l 文档类中的摘要存在问题

jams-l 文档类中的摘要存在问题

我正在准备向《美国数学学会杂志》提交论文,我正在使用文档jams-l类。但是,摘要总是出现在文章正文之后。有人知道如何将摘要移到前面吗,还是我做错了什么?以下是一些示例代码,其中发生了这种情况。抱歉代码很长,但我尽量不删除可能导致这种情况的任何内容。要加载它,需要jams-l.cls包裹

\documentclass{jams-l}

\newtheorem{theorem}{Theorem}[section]
\newtheorem{lemma}[theorem]{Lemma}

\theoremstyle{definition}
\newtheorem{definition}[theorem]{Definition}
\newtheorem{example}[theorem]{Example}
\newtheorem{xca}[theorem]{Exercise}

\theoremstyle{remark}
\newtheorem{remark}[theorem]{Remark}

\numberwithin{equation}{section}

\begin{document}

\title{}
\author{}
\address{}
\curraddr{}
\email{}
\thanks{}

\author{}
\address{}
\curraddr{}
\email{}
\thanks{}

\subjclass[2010]{Primary }

\date{}

\dedicatory{}

\begin{abstract}
abstract abstract abstract
\end{abstract}

\maketitle

text of article text of article text of article

\bibliographystyle{amsplain}

\end{document}

答案1

类文件中的注释说

% Set abstract at the end of the paper instead of the topmatter section

这意味着最后的摘要是 AMS 杂志的工作人员想要的。由于您需要使用该类,因此请将摘要放在他们希望它出现。

相关内容