Elsevier 模板

Elsevier 模板

事实上,我正在使用 Elsevier 模板,我想记录通讯作者的电子邮件地址,问题是:\cortext[mycorrespondingauthor]{Corresponding author} 它给出了所有作者的姓名。我只想获取作者 1 的邮件地址,不包含作者姓名。代码如下:

\documentclass[review]{elsarticle}

\usepackage{lineno,hyperref}
\modulolinenumbers[5]

\journal{Journal of \LaTeX\ Templates}

\journal{Journal of \LaTeX\ Templates}

\bibliographystyle{elsarticle-num}
\begin{document}
\begin{frontmatter}


\title{Title 1 }



\author{Author1$^*$, Author2, Author3}
\address{address street zip code city}


\cortext[mycorrespondingauthor]{Corresponding author}
\ead{[email protected]}

\end{document}

答案1

您需要注释\author语句。

\author[ub]{First Author\corref{cor1}}
\author[psy-umr]{Other Second}
\author[a-umr]{Yet Another}
\author[a-umr]{And Another}
\author[d-umr]{Some One-Else}
\author[ub]{Princial Investigator}
\address[ub]{Some Institution}
\address[psy-umr]{Other}
\address[a-umr]{Different Institution}
\address[d-umr]{Last Institution}
\cortext[cor1]{Email: [email protected]}

答案2

使用elsarticle文档类时,建议将每个\author指令与其关联的\address\cortext\ead指令(如果有)分组。因此,我将按如下方式重写您的代码:

\documentclass[review]{elsarticle}
\usepackage[colorlinks]{hyperref}
\journal{Journal of \LaTeX\ Templates}
\bibliographystyle{elsarticle-num}

\begin{document}
\begin{frontmatter}
\title{Title 1}

\author[a1]{Author1\corref{c1}}
\address[a1]{Address: street, zip code \& city}
\cortext[c1]{Corresponding author}
\ead{[email protected]}

\author{Author2}
\author{Author3}

\end{frontmatter}
\end{document}

在此处输入图片描述

...

在此处输入图片描述

\corref{c1}注意(i)在第一个陈述的论证中添加了陈述\author,以及(ii)从

\cortext[mycorrespondingauthor]{Corresponding author}

 \cortext[c1]{Corresponding author}

相关内容