如何将通讯作者的‘信封’放在底部?

如何将通讯作者的‘信封’放在底部?

我正在写一篇论文,James 和 Henry 都是共同第一作者,Henry 是通讯作者。下面是代码。

\documentclass[runningheads]{elsarticle}
%

\setlength{\belowdisplayskip}{3pt}
\usepackage{ifthen}
\usepackage{comment}
\setcounter{secnumdepth}{4}


\usepackage{newtxtext,newtxmath} % optional: Times Roman clone text and math font

% for color models
\usepackage{xcolor}

% for nice coloring in tables
\usepackage{nicematrix}

% for multi-row cells
\usepackage{multirow}

%for Helvetica-like sans font
\usepackage[T1]{fontenc}
\usepackage{tgheros}
\usepackage{enumitem}
\usepackage{amsmath}
\usepackage[english]{babel}
\usepackage{amsmath}  

\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[top=2cm,bottom=2cm,left=2cm,right=2cm,marginparwidth=1.75cm]{geometry}


\usepackage{marvosym}



\begin{document}
%

\begin{frontmatter}

\title{xxxx}

\cortext[coauthor]{Both authors contributed equally}
\renewcommand{\thefootnote}{\fnsymbol{footnote}}

\affiliation[inst1]{organization={United Kingdom}}


\author[inst1]{James\corref{coauthor}}
\author[inst1]{Henry\corref{coauthor}\textsuperscript{\Letter}}
\affiliation[inst2]{organization={United States}}

\begin{abstract}
\end{abstract}
\begin{keyword}
\end{keyword}
\end{frontmatter}
\end{document}

我们可以看到 Henry 是通讯作者,名字后面有一个信封。这个信封标记要怎样才能像下面红色标记处的‘*’一样,放在论文最下方呢?信封后面会写着:‘通讯作者:电子邮箱地址’。

在此处输入图片描述

答案1

好的,我解决了这个问题。

\documentclass[runningheads]{elsarticle}
%

\setlength{\belowdisplayskip}{3pt}
\usepackage{ifthen}
\usepackage{comment}
\setcounter{secnumdepth}{4}


\usepackage{newtxtext,newtxmath} % optional: Times Roman clone text and math font

% for color models
\usepackage{xcolor}

% for nice coloring in tables
\usepackage{nicematrix}

% for multi-row cells
\usepackage{multirow}

%for Helvetica-like sans font
\usepackage[T1]{fontenc}
\usepackage{tgheros}
\usepackage{enumitem}
\usepackage{amsmath}
\usepackage[english]{babel}
\usepackage{amsmath}  

\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[top=2cm,bottom=2cm,left=2cm,right=2cm,marginparwidth=1.75cm]{geometry}


\usepackage{marvosym}



\begin{document}
%

\begin{frontmatter}

\title{xxxx}

\cortext[coauthor]{Both authors contributed equally}
\renewcommand{\thefootnote}{\fnsymbol{footnote}}

\affiliation[inst1]{organization={United Kingdom}}


\author[inst1]{James\corref{coauthor}}
\author[inst1]{Henry\corref{coauthor}\textsuperscript{\Letter}}
\affiliation[inst2]{organization={United States}}

\begin{abstract}
\end{abstract}
\begin{keyword}
\end{keyword}
\end{frontmatter}
\renewcommand{\thefootnote}{\blank}  \footnote{{\Letter} {Corresponding author, Email address: \linkable{}}}
\end{document}

相关内容