elsarticle / 如何在两个作者之间共享最后作者位置

elsarticle / 如何在两个作者之间共享最后作者位置

如何在 elsarticle 作者列表中与两位作者共享最后作者的位置?

以下 MWE 代码:

\documentclass[review]{elsarticle}

\usepackage{lineno}
\modulolinenumbers[5]

\journal{Journal of \LaTeX\ Templates}

\begin{document}

\begin{frontmatter}

\title{Elsevier \LaTeX\ template\tnoteref{mytitlenote}}

%%
%% the question refers to the part below ---v
%%

%% Group authors per affiliation:
\author[1]{Corresponding author\corref{cor1}}
\ead{nomail}
\author[1]{co-author I}
\author[1]{co-author II}
\ead[url]{magic universities do not have a web address}
\author[1]{co-author III}
\author[2]{co-author IV}
\author[2,3]{co-author V}
\author[2]{co-author VI}


\cortext[cor1]{Corresponding author}

\address[1]{
    Hogwarts School of Witchcraft and Wizardry,  Institute for Magic Potions,   Hogwarts, UK
}
\address[2]{
    New York School of Witchcraft and Wizardry,  Institute for Protection against dark forces, New York, USA
}
\address[3]{
    Peking School of Witchcraft and Wizardry,  Institute for Magic, Peking, China
}

\begin{abstract}
This template helps you to create a properly formatted \LaTeX\ manuscript.
\end{abstract}

\begin{keyword}

\end{keyword}

\end{frontmatter}

\linenumbers

\section{The Elsevier article class}

\bibliography{mybibfile}

\end{document}

生成以下输出: 在此处输入图片描述

我如何才能将两位作者放在最后,并用“&”或“and”连接他们的名字,以强调他们在这项工作中的同等贡献?请注意,一位作者有一个额外的隶属关系(合著者 V 与合著者 VI),否则我只会使用一个\author标签并包含两个,例如\author[2]{co-author IV & co-author V}%\fnref{fn4}}

在此处输入图片描述

相关内容