所有作者都属于同一组织,无需额外软件包

所有作者都属于同一组织,无需额外软件包

我和来自同一机构的同事有一份工作论文,因此我们输入了:

\author{A B \and C d}

我现在如何添加隶属关系,以便它适用于两个作者(居中),而不仅仅是其中一位?如果可能的话,我宁愿不使用额外的包。

答案1

最简单的解决方案(并不是说它是最好的)是不使用\and

\documentclass{article}
\title{Foo}
\author{Author One\qquad Author Two\\Affiliation}
\begin{document}
\maketitle
\end{document}

在此处输入图片描述

答案2

目前,我认为除了使用例如验证码软件包。详细信息请参阅软件包手册。

\documentclass[11pt,a4paper,english]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage{authblk}
\usepackage{blindtext}

\title{Two Authors with same Affiliation}
\author{Author One}
\author{Author Two}
\affil{Affiliation}

\begin{document}
  \maketitle

  \blinddocument
\end{document}

盲文该包仅用于创建虚拟文本,因此不是解决方案的一部分

答案3

为了更清晰地定义,另一种解决方案是使用\publishers{}Koma-Script 类的字段。

\documentclass{scrartcl}
\title{Foo}
\author{Author One \and Author Two}
\publishers{Affiliation}
\date{\today}                          %or \date{} to not print date
\begin{document}
    \maketitle
\end{document}

注意:\and在各个作者之间使用。

答案4

这是我常用的技巧。(这是我的合著者教给我的;我遇到过至少一个人,他因为语义标记的原因而非常讨厌它,但我喜欢它。)

\documentclass{article}
\title{Foo}
\author{Author One\and Author Two}
\date{Affiliation}
\begin{document}
\maketitle
\end{document}

相关内容