在文档类别“amsart”下的论文摘要中做脚注?

在文档类别“amsart”下的论文摘要中做脚注?

搜索尝试似乎只显示了如果文档类是普通类,如何使脚注在 Abstract 中正常工作。但是,对于类 amsart 来说,似乎没有任何方法可行。

\documentclass{amsart}
\begin{document}
\title{Right1}
\begin{abstract}
Right2\footnote{right2}
\end{abstract}
\maketitle

\section{Intro}
Right3\footnote{right3}

\end{document}

答案1

这个临时解决办法应该能教会您不要给摘要添加脚注。;-)

\documentclass{amsart}
\begin{document}
\title{Right1}
\begin{abstract}
Right2\footnotemark
\end{abstract}
\maketitle
\stepcounter{footnote}
\footnotetext{right2}

\section{Intro}
Right3\footnote{right3}

\end{document}

在此处输入图片描述

我降低了文字高度以便制作更小的图片。

相关内容