如何在脚注中写电子邮件

如何在脚注中写电子邮件

我曾经在脚注中看到我的电子邮件。它有效,但问题是我想在电子邮件前面写上我的名字,缩写形式为(B.Blah),但它的全长形式却是(Blah Blah)。我该怎么办?我的代码的一部分是\ead{[email protected]}

\documentclass[final,3p,times,twocolumn]{elsarticle}
\begin{document}

\begin{frontmatter}

\title{title}
\author{First authur} 
\ead{[email protected]}
\author{Second Author\corref{cor1}} 
\ead{[email protected]}
\address{address}
\cortext[cor1]{Corresponding author:}

\end{document}

答案1

正如 @Zarko 在评论中指出的那样,该\href命令(由包提供hyperref)可能就是您要找的。例如,

\documentclass{article}
\usepackage[colorlinks,allcolors=blue]{hyperref}
\begin{document}
Hello.\footnote{\href{mailto:[email protected]}{B. Blah}}
\end{document} 

单击字符串“B. Blah”将打开您的默认电子邮件程序,其中包含一封发送至“[电子邮件保护]“。

答案2

实际上没有规定elsarticle为作者姓名指定不同的形式。

这是一个黑客攻击。

\documentclass[final,3p,times,twocolumn]{elsarticle}
\begin{document}

\begin{frontmatter}

\title{title}
\author{First authur} 
\ead{[email protected]}
\author{Second Author\corref{cor1}} 
\ead{[email protected]}
\address{address}
\cortext[cor1]{Corresponding author:}

\end{document}

在此处输入图片描述

相关内容