amsart 的作者

amsart 的作者

有没有什么方法可以让作者部分格式良好amsart

格式良好,我的意思是像这样:

答案1

这可能不是最优的,但它可以重现所需的输出:

在此处输入图片描述

\documentclass{amsart}% http://www.ctan.org/pkg/amsart
\usepackage{lipsum}% http://ctan.org/pkg/lipsum
\makeatletter
\g@addto@macro{\endabstract}{\@setabstract}
\newcommand{\authorfootnotes}{\renewcommand\thefootnote{\@fnsymbol\c@footnote}}%
\makeatother
\begin{document}
\begin{center}
  \LARGE 
  More than one Author with different Affiliations \par \bigskip

  \normalsize
  \authorfootnotes
  Author A\footnote{Author A}\textsuperscript{1}, Author B\footnote{Author B}\textsuperscript{2},
  Author C\footnote{Author C}\textsuperscript{1}, Author D\footnote{Author D}\textsuperscript{2} and
  Author E\footnote{Author E}\textsuperscript{2} \par \bigskip

  \textsuperscript{1}Department of Computer Science, \LaTeX\ University \par
  \textsuperscript{2}Department of Mechanical Engineering, \LaTeX\ University\par \bigskip

  \today
\end{center}

\begin{abstract}
\lipsum[1]
\end{abstract}

\section{A section}
\lipsum[2]
\end{document}

\@setabstract添加到环境末尾,abstract以便在创建环境后立即打印。amsart首先将摘要放在一个框中,然后仅通过调用来打印它\maketitle(我们在上面的 MWE 中绕过了它)。

此外,标题(已编辑)内的脚注机制也被改变,center以通过宏来打印符号\authorfootnotes

可能需要进行一些修改:

  1. 如果文档中还有其他脚注,则可能需要在标题后重置脚注计数器。为此,请使用\setcounter{footnote}{0}
  2. 如果第一页上的图形可能出现在页面顶部,则需要修改顶部对齐浮动的数量。

答案2

您可以使用amsaddr包裹. 这仅在 中有用amsart

相关内容