如果我论文的所有作者都来自同一机构怎么办?

如果我论文的所有作者都来自同一机构怎么办?

下面是我的代码;我该如何修改它以便A下图不是显示出来吗?因为所有作者都来自同一个研究所,所以不需要使用字母作为引文。


\documentclass{elsarticle}
\usepackage{hyperref}
\hypersetup{
colorlinks=true,
linkcolor=black
}
\begin{document}
\begin{frontmatter}

\title{xx}

\renewcommand{\thefootnote}{\fnsymbol{footnote}}

\author{A\textsuperscript{\Letter}}
\author{B}
\author{C}
\author{D}
\author{E}
\affiliation[inst1]{organization={xx},
            city={yy},
            state={zz},
            postcode={1}, 
            country={2}}

\begin{abstract}
xx

\end{abstract}
\begin{keyword}

\end{keyword}

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

\end{document}

在此处输入图片描述

答案1

我不建议这样做,但你可以重新定义\theaffn。Elsevier 可能更喜欢一大堆Ibids。

\documentclass{elsarticle}
\usepackage{hyperref}
\hypersetup{
colorlinks=true,
linkcolor=black
}
\begin{document}
\begin{frontmatter}

\title{xx}

\renewcommand{\thefootnote}{\fnsymbol{footnote}}

\author{A}
\author{B}
\author{C}
\author{D}
\author{E}

\let\theaffn=\relax
\affiliation{organization={xx},
            city={yy},
            state={zz},
            postcode={1}, 
            country={2}}
\begin{abstract}
xx

\end{abstract}
\begin{keyword}

\end{keyword}

\end{frontmatter}
%\renewcommand{\thefootnote}{\blank}  \footnote{{\Letter} {Corresponding author, Email address: \linkable{}}}

\end{document}

相关内容