如何在 elsarticle 样式中添加通讯作者的电话号码

如何在 elsarticle 样式中添加通讯作者的电话号码

按照 Elsarticle 模板,他们提供了添加通讯作者的方式,如下所示。

%% Title, authors and addresses

%% use the tnoteref command within \title for footnotes;
%% use the tnotetext command for theassociated footnote;
%% use the fnref command within \author or \address for footnotes;
%% use the fntext command for theassociated footnote;
%% use the corref command within \author for corresponding author footnotes;
%% use the cortext command for theassociated footnote;
%% use the ead command for the email address,
%% and the form \ead[url] for the home page:
%% \title{Title\tnoteref{label1}}
%% \tnotetext[label1]{}
%% \author{Name\corref{cor1}\fnref{label2}}
%% \ead{email address}
%% \ead[url]{home page}
%% \fntext[label2]{}
%% \cortext[cor1]{}
%% \address{Address\fnref{label3}}
%% \fntext[label3]{}

我想使用上述规则来添加我的详细信息

           Author 1 name^a, Author 2 name^a, Corresponding name^{a,*}
      a Address here...
      * Corrpesonding author. Tel. ... Email...

我尝试过

\author[a]{Author 1 name}
\author[a]{Author 2 name}
\author[a]{Corresponding name\corref{cor1}}
\cortext[cor1]{Corresponding author}
 \ead {email@}
\address[a]{Address here}

但是无法添加通讯作者电话。你能帮我吗?

答案1

您可以尝试使用\corref{label}within\author命令,这将生成相应的输出\cortext[label]。因此相应的代码\author可以编码为:

\author[a]{ Author c name\corref{cor1}}

相关内容