\documentclass[12pt,reqno]{amsart}
%------------------------------------------------------------
\usepackage{etoolbox}
\makeatletter
\patchcmd\maketitle
{\uppercasenonmath\shorttitle}
{}
{}{}
\patchcmd\maketitle
{\@nx\MakeUppercase{\the\toks@}}
{\the\toks@}
{}
{}{}
%----
%\patchcmd\@settitle
% {\uppercasenonmath\@title}
% {}
% {}{}
\patchcmd\@setauthors
{\MakeUppercase{\authors}}
{\authors}
{}{}
\makeatother
%------------------------------------------------------------
%\usepackage[notref,notcite]{showkeys}
\usepackage{amsmath,amssymb,amsthm}
\usepackage{color}
\usepackage{url}
%-----------------
%------------------------------------------------------------
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
%------------------------------------------------------------
\usepackage{geometry}
\geometry{left=2cm,right=2cm,top=2cm,bottom=2cm}
%-------------------------------------------
\address{$^{[1]}$ The address of author1.}
\email{\url{[email protected]}}
\address{$^{[2]}$ The address of author2.}
\email{\url{[email protected]}}
\subjclass[2010]{......}
\keywords{......}
%%%%%%%%%%%% \begin{document} %%%%%%%%%%%%%%%%%%%%
\begin{document}
\author[Author1, Author2] {Author1$^{1}$ and Author2$^{2}$ }
\title{Title}
\maketitle
\end{document}
如何添加
*
表示作者 2 是通讯作者,例如这张纸?
答案1
此方法仅适用于amsart
。其他文章文档类别的工作方式不同。
输入作者及其相关信息,如下所示:
\author{Author 1}
\address{Address for Author 1}
\email{[email protected]}
\author{Author 2}
\address{Address for Author 2}
\email{[email protected]}
\thanks{The second author is the corresponding author.}
重要的是在该行后立即输入与作者相关的元素\author
。这些元素将保持与提供的顺序相同的顺序。
项目\thanks
将按照输入的顺序列在第一页的底部,没有脚注标记。
地址将按照提供的顺序列在文章末尾。顺序假定与作者在第一页列出的顺序相同。如有必要,可以将名称作为选项与任何地址元素相关联:
\address[Author 2]{Address for Author 2}
作者信息以这种方式实现,以便每个元素都是独立且独特的,并且可以作为文章书目参考的一部分自动提取。这由出版商提供给索引服务,每个元素都必须可以单独检索。在已发表的文章中,每个元素的外观都遵循指定的期刊样式。
答案2
这并不优雅,但是非常快。
\documentclass[reqno, a4paper]{amsart}
\title{The article}
\author{First author}
\address{FirstAuthorAddress}
\email{FirstAuthorMail}
\author{Second author$^{\ast}$}
\address{SecondAuthorAddress}
\email{SecondAuthorMail}
\thanks{$^\ast$Corresponding author.}
\begin{document}
\maketitle
\end{document}