文章开头的作者姓名

文章开头的作者姓名

我正在尝试向期刊提交一篇文章,该期刊要求在文章标题后立即列出作者的姓名和联系信息。我使用的是 amsart 样式,此样式的默认设置是在文章末尾列出联系信息。由于我不想更改样式,因此任何有关如何在文章开头列出作者姓名和联系信息的建议都将不胜感激。

答案1

正如评论中提到的:如果期刊提供或建议特定的 LaTeX 样式或模板,那么你应该使用它。通常你无法选择自己的样式来提交给期刊。

amsart课堂上,联系信息是使用命令排版的\enddoc@text。您可以立即使用该命令\maketitle获取标题后的联系信息:

\maketitle

\makeatletter
\enddoc@text
\let\enddoc@text\empty % to remove the contact info from the end of the document
\makeatother

请注意,我们需要\makeatletter\makeatother才能使用\enddoc@text,因为它包含@。我们要做的\let\enddoc@text\empty是从文档末尾删除联系信息。

具有一些格式的完整示例:

\documentclass{amsart}

\usepackage{lipsum}

\author{Author \and Author}
\title{Title}
\address{University of bla}
\email{[email protected]}

\begin{document}

\maketitle

\makeatletter
\vspace{-2em}
{\centering\enddoc@text}
\let\enddoc@text\empty % to remove the contact info from the end of the document
\makeatother

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

\lipsum

\end{document} 

相关内容