直接在作者姓名下显示所属机构

直接在作者姓名下显示所属机构

我正在写一篇有三位作者的论文,每位作者都有不同的隶属关系。我想列出作者,让他们的名字在一行,隶属关系在另一行,并排排列,以便每个隶属关系都直接位于作者姓名下方。有没有办法实现这一点,而无需手动分隔隶属关系?我尝试在作者框中包含一个表格,但在文档开始前使用表格时会出错。

到目前为止,我已经在脚注中列出了相关关系,这是代码

\documentclass[a4paper,12pt]{article}

%opening
\title{ This is a Paper }
\author{Author A\footnote{Affiliation A}, Author B\footnote{Affiliation B}, and Author C\footnote{Affiliation C}}

\begin{document}

\maketitle

\end{document}

编辑:有一个类似问题其中一个答案使用自定义函数直接在作者姓名下显示隶属关系,但作者姓名分散在网格中。如果可能的话,我希望作者姓名保留在列表中,例如

作者 A、作者 B 和作者 C

在作者姓名下直接注明所属单位。

答案1

只需在 的参数中使用标准 LaTeX 语法\author,即使用\and分隔三个作者块。然后每个块应采用以下形式

Author Name \\ Author Affiliation

在此处输入图片描述

\documentclass[a4paper,12pt]{article}
\title{ This is a Paper }
\author{Author A\\ \small Affiliation A % "\small" is optional
        \and 
        Author B\\ \small Affiliation B 
        \and 
        Author C\\ \small Affiliation C}
\date{\today}

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

相关内容