下面是我的代码;我该如何修改它以便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 可能更喜欢一大堆Ibid
s。
\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}