我使用的elsarticle
类会添加上标,将作者与其所属机构联系起来。但是,我论文的所有作者都属于同一所属机构,因此所有作者都使用上标“a”看起来有点奇怪(如下所示)。
\documentclass{elsarticle}
\author[su]{Jane Doe\corref{cor1}}
\ead{jdoe@someuniversity}
\author[su]{Joe Bloggs}
\ead{jbloggs@someuniversity}
\cortext[cor1]{Corresponding author}
\address[su]{Department of Underwater Basket-weaving, Some University}
\begin{document}
\maketitle
\end{document}
有办法关闭这个功能吗?我尝试过不添加[su]
标签,但结果所有作者都得到了一个星号,标记他们是通讯作者!
编辑:这是一个完整的例子:
\documentclass[preprint,12pt]{elsarticle}
\journal{Some Journal}
\begin{document}
\begin{frontmatter}
\title{My Article}
\author[su]{Jane Doe\corref{cor1}}
\ead{jdoe@someuniversity}
\author[su]{Joe Bloggs}
\ead{jbloggs@someuniversity}
\cortext[cor1]{Corresponding author}
\address[su]{Department of Underwater Basket-weaving, Some University}
\begin{abstract}
Abstract
\end{abstract}
\begin{keyword}
test
\end{keyword}
\end{frontmatter}
\section{Introduction}
Blah blah blah
\end{document}
\endinput
答案1
这是实现输出的一种方法:
\documentclass{elsarticle}
\author{Jane Doe\corref{cor1}}
\ead{jdoe@someuniversity}
\author{Joe Bloggs\corref{}}
\ead{jbloggs@someuniversity}
\cortext[cor1]{Corresponding author}
\address{Department of Underwater Basket-weaving, Some University}
\begin{document}
\maketitle
\end{document}
\corref{}
为非通讯作者提供一个空的星号会删除不需要的星号。
答案2
正如您所发现的,elsarticle
提供了两种添加作者的方法 - 带标签和不带标签(第 4 页和第 5 页)文档)。如果省略标签,则之前的作者\address
将具有相同的隶属关系。星号表示通讯作者。它的重复是一种已知错误可以使用以下方法修复etoolbox
:
\documentclass[preprint,10pt,3p]{elsarticle}
\usepackage{etoolbox}
\makeatletter
\patchcmd{\@author}{\global\let\@fnmark\@empty}{\global\let\@fnmark\@empty\global\let\@corref\@empty}{}{\@latex@error{Failed to patch \string\@author for \string\@corref reset}}
\makeatother
\journal{}
\begin{document}
\begin{frontmatter}
\title{Title of my paper \tnoteref{label1}}
\tnotetext[label1]{A note to the title}
\author{Jane Doe\corref{cor1}}
\ead{jdoe@someuniversity}
\author{Joe Bloggs}
\ead{jbloggs@someuniversity}
\cortext[cor1]{Corresponding author}
\address{Department of Underwater Basket-weaving, Some University}
\begin{abstract}
Abstract
\end{abstract}
\begin{keyword}
keyword1, keyword2
\end{keyword}
\end{frontmatter}
\section{Introduction}
\end{document}