如何使用 authblk 将作者分组?

如何使用 authblk 将作者分组?

我有一篇论文,有大量作者,其中一些是主要作者,一些是次要作者。我使用该authblk包来处理许多隶属关系,如下所示:

\author[1]{Fred Foo}
\author[2]{Barbara Bar}
% Here I would like a line break
\author[1]{Sylvia Sub-Author}
...

根据authblk包装文档

如果要将作者文本强制移到新行,请使用\authorcr...

但似乎只能用之内命令\author的参数,而不是之间作者命令。如果我尝试\authorcr在上面的例子中将两个作者放在中间,我会得到

A \newline or \\ command appears between paragraphs, where it makes no
sense. If you're trying to ``leave a blank line'', use a \vspace
command.

我实际上无法使用,因为垂直空间会在读取命令\vspace时出现在文档中,而不是在执行命令时出现。\author\maketitle

我尝试过输入一个空的作者,但是这会给我带来一个额外的“,”漂浮在周围。

有什么建议吗?这似乎是撰写有许多作者的论文的用户经常想做的事情。

这是一个最小的工作示例:

\documentclass[letterpaper]{article} %DO NOT CHANGE THIS
\usepackage{authblk}            % large number of authors

 \begin{document}




\title{Paper Concerning Something Very Interesting}
\author[1]{A.N. Author}
\author[4]{A.N. Other}
\author[2]{Y.A.N. Other}
\author[1]{A.N. Author, Jr.}
\author[2]{A.N. Author, III}
\author[1]{One Subordinate Author}
\author[3]{Two Subordinate Author}
\author[4]{Third Subordinate Author}
\author[5]{Fourth Subordinate Author}
\affil[1]{A Company}
\affil[2]{Another Company}
\affil[3]{YA Company}
\affil[4]{A University}
\affil[5]{Another University}
\maketitle
\thispagestyle{empty}

\begin{abstract}
Yes, it's very abstract...
\end{abstract}


\begin{center}
  \Large \textit{Draft: Do not circulate}
\end{center}


\section{Introduction}

lorem ipsum

\end{document}

%%% Local Variables:
%%% mode: latex
%%% TeX-master: t
%%% End:

给出这个: 格式化的 MWE

我希望能够在“一位作者,III”和“一位下属作者”之间设置一个间隔。

答案1

一个肮脏但有效的技巧是在所需的换行符后的\authorcr第一个内添加:\author

\documentclass{article}
\usepackage{authblk}

\title{Paper Concerning Something Very Interesting}
\author[1]{A.N.~Author}
\author[4]{A.N.~Other}
% The \authorcr within the following \author forces a line break here
\author[2]{\authorcr Y.A.N.~Other}
\author[1]{A.N.~Author,~Jr.}
\author[2]{A.N.~Author,~III}
\author[1]{One~Subordinate~Author}
\author[3]{Two~Subordinate~Author}
\author[4]{Third~Subordinate~Author}
\author[5]{Fourth~Subordinate~Author}
\affil[1]{A~Company}
\affil[2]{Another~Company}
\affil[3]{YA~Company}
\affil[4]{A~University}
\affil[5]{Another~University}

\begin{document}
\maketitle
\end{document}

~请注意,在作者姓名中使用不间断空格也是一个好主意避免在名字后换行,并确保在.

在此处输入图片描述

相关内容