使用 authblk 包时如何指明相应的作者?

使用 authblk 包时如何指明相应的作者?

这个问题不是重复的如何打印通讯作者,因为该问题具体询问如何使通讯作者的姓名出现在完整作者列表的左侧,同时也出现在完整作者列表中。

我想知道在使用 authblk 包时指示通讯作者的最简单、最标准的方法。我在 Google 上搜索了很多,但都没有找到答案。如果相关的话,我将使用 titlepage 选项,如下所示\documentclass[titlepage]{article}.

这是一个最简单的例子,其中没有标明通讯作者。所以我想知道如何修改它以标明通讯作者。

\documentclass[titlepage]{article}
\usepackage[affil-it]{authblk}
\usepackage[english]{babel}
\usepackage{blindtext}

\title{An efficient method for exploiting midichlorians in weak life-forms}

\author[1]{Darth Vader}
\author[2]{Darth Sidious}

\affil[1]{%
  Office of the Supreme Commander of the Imperial Forces, 
  The Galactic Empire, The Bridge, Executor}
\affil[2]{%
  Order of the Sith Lords, LiMerge Power Building, The Works, Coruscant}

\begin{document}

\maketitle
\blindtext
\end{document}

下面的代码稍后会生成屏幕截图,同时还附上日志的屏幕截图。

\listfiles
\documentclass[titlepage]{article}
\usepackage[affil-it]{authblk}
\usepackage[english]{babel}
\usepackage{blindtext}

\title{An efficient method for exploiting midichlorians in weak
life-forms}

\author[1]{Darth Vader\thanks{corresponding author}}
\author[2]{Darth Sidious}

\affil[1]{%
    Office of the Supreme Commander of the Imperial Forces, 
The Galactic Empire, The Bridge, Executor}
\affil[2]{%
    Order of the Sith Lords, LiMerge Power
Building, The Works, Coruscant}

\begin{document}

\maketitle
\blindtext
\end{document}

在此处输入图片描述 您可以看到数字 1 作为上标重复。

如果我将 \listfiles 添加到文档中,则会收到以下日志: 在此处输入图片描述

答案1

我猜这更像是一种变通方法,而不是官方解决方案。但根据期刊针对您的稿件的作者指南,这种格式可能看起来更合适。 它包括通讯作者作为隶属关系的指标。

示例代码:

\listfiles
\documentclass[titlepage]{article}
\usepackage[affil-it]{authblk}
\usepackage[english]{babel}
\usepackage{blindtext}

\title{An efficient method for exploiting midichlorians in weak life-forms}

\author[1,*]{Darth Vader}
\author[2]{Darth Sidious}

\affil[1]{Office of the Supreme Commander of the Imperial Forces, The Galactic Empire, The Bridge, Executor}
\affil[2]{Order of the Sith Lords, LiMerge Power Building, The Works, Coruscant}
\affil[*]{Corresponding author: Darth Vader, [email protected]}

\begin{document}

\maketitle
\blindtext
\end{document}

示例图片:

latex 示例-affil

答案2

您可以使用 来执行此操作\thanks,但如果您使用 titlepage 选项(如\documentclass[titlepage]{article}),则应\renewcommand{\thefootnote}{\fnsymbol{footnote}}在页眉中包含该行以使脚注标记为星号。我们还可以将行放在\renewcommand{\thefootnote}{\arabic{footnote}}\maketitle 之后,以撤消全局更改。以下是 MWE:

\documentclass[titlepage]{article}
\usepackage[affil-it]{authblk}
\usepackage[english]{babel}
\usepackage{blindtext}

\renewcommand{\thefootnote}{\fnsymbol{footnote}}
\title{An efficient method for exploiting midichlorians in weak life-forms}

\author[1]{Darth Vader \thanks{Corresponding author}}
\author[2]{Darth Sidious}

\affil[1]{%
  Office of the Supreme Commander of the Imperial Forces, 
  The Galactic Empire, The Bridge, Executor}
\affil[2]{%
  Order of the Sith Lords, LiMerge Power Building, The Works, Coruscant}

\begin{document}

\maketitle
\renewcommand{\thefootnote}{\arabic{footnote}}
\blindtext
\end{document}

答案3

我在谷歌搜索在 ACM 模板中设置通讯作者时发现了这个问题。以下是在 ACM 模板中设置通讯作者的方法:

\author{Author 1}
\affiliation{\institution{Affiliation}}
\email{email}
\authornote{Corresponding authors}

\author{Author 2}
\affiliation{\institution{Affiliation}}
\email{email}
\authornotemark[1]

\author{Author 3}
\affiliation{\institution{Affiliation}}
\email{email}

这里,作者 1 和 2 都被设置为通讯作者,但作者 3 没有被设置为通讯作者。进一步的解释可以在这里找到:https://www.acm.org/binaries/content/assets/publications/consolidated-tex-template/acmart.pdf

通讯作者 通讯作者脚注

答案4

对于我来说这个解决方案来自这里为以下文档工作elsarticle

\author[affiliation]{Corresponding Author Name\corref{cor1}}
\ead{Corresponding Author Email Address}
\cortext[cor1]{Corresponding author}

相关内容