如何让两位作者使用相同的隶属关系

如何让两位作者使用相同的隶属关系

我在用ACM 2017会议模板。我让第一作者有两个隶属关系,其中一个与第三作者共享。我空间不足,想减少空间。我想使用一种格式,允许我在作者姓名上添加上标,并写一次每个机构。我希望它看起来类似于这张图片(参见最后一位作者,他有两个隶属关系,其中一个与另一位作者共享,所以我想写一次共享隶属关系)。

在此处输入图片描述

我的 ACM 模板如下所示:

在此处输入图片描述

我不喜欢第一作者和第三作者的重复隶属关系。你能帮我修改一下,让它看起来像上面的图片吗?

乳胶代码示例:

\documentclass[sigconf]{acmart}
\usepackage{booktabs}
\usepackage{array, makecell} 

\author{First Author}
\affiliation{%
    \institution{First Instit.}
    \city{First City}
    \state{First Country}
}

\affiliation{%
    \institution{Second Instit.}
    \city{Second City}
    \state{Second Country}
}
\email{[email protected]}

\author{Second Author}
\affiliation{%
    \institution{Third Instit.}
    \city{Third City}
    \state{third Country}
}
\email{[email protected]}

\author{Third Author}
\affiliation{%
    \institution{First Instit.}
    \city{First City}
    \state{First Country}
}
\email{[email protected]}

\begin{document}

    \title{Title}

    \begin{abstract}
        Abstract  
    \end{abstract}

    \maketitle

    \section{This is a Section} Some text here.

\end{document}

答案1

使用该authblk包,如下所示:

\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{authblk}

\title{FamilyGAN: learning to generate images of Quahog, Rhode Island, USA}

\author[1]{Peter Griffin}
\author[1]{Cleveland Brown}
\author[2]{Glenn Quagmire}
\author[1,2,3]{Joe Swanson}

\affil[1]{School of Computing, University of Utah, Salt Lake City, UT, USA \authorcr
  \{\tt peter, cleveland, joe\}@utah.edu}
\affil[2]{NVIDIA Research, Santa Clara, CA, USA \authorcr
  \{\tt glenn, joe\}@nvidia.com}
\affil[3]{Department of Engineering, Harvey Mudd College, Claremont, CA, USA \authorcr
  \tt [email protected]}

\date{\today}

\begin{document}

\maketitle

\end{document}

相关内容