作者旁边有附属符号,但参考文献中没有

作者旁边有附属符号,但参考文献中没有

使用计算机模板,我试图添加具有不同隶属关系的多个作者。我目前的做法是

\documentclass[sigconf]{acmart}

\begin{document}

\copyrightyear{2018}
\acmYear{2018}
\setcopyright{rightsretained}
\acmConference[SIGConf '18]{ACM SIG Conf}{2018}{USA}
\acmBooktitle{SIGConf '18: ACM SIG Conf, 2018, USA}
\acmDOI{00.0000/0000000.0000000}
\acmISBN{000-0-0000-0000-0/00/00}


\title[]{Title}

\author{Author 1$^1$, Author 2$^2$, Author 3$^2$, Author 4$^1$, and Author 5$^1$}
\affiliation{\vspace{0.1cm}
\institution{$^1$ Affilation 1}
\institution{$^2$ Affilation 2}
}
\email{{author1, author2, author3, author4, author5}@affilation.com}

\begin{abstract}
Abstract
\end{abstract}

\maketitle

\section{Introduction}
Intro

\end{document}

将显示以下内容: 在此处输入图片描述

这很好,也是我想要的。问题是 ACM 参考格式还将包括附属机构编号 在此处输入图片描述

有没有办法隐藏 ACM 参考格式中的数字,但将其保留在作者部分?

答案1

这绝对是不是ACM 希望作者能够加入的方式。批准的方式是:

\author{Author 1}
\affiliation{
  \institution{Institution 1}
  \country{Country 1}
}
\author{Author 2}
\affiliation{
  \institution{Institution 2}
  \country{Country 2}
}

答案2

这应该有效:

\author{author one$^{1,2}$, author two$^{1,2}$, author three$^{1,2}$, author four$^3$}
\def \authors{author one, author two, author three, author four}
\affiliation{%
\institution{$^1$Affil one
\country{country}}
}
\affiliation{%
  \institution{$^2$Affil two
  \country{country}}
}
\affiliation{%
\institution{$^3$Affil three
\country{country}}
}

在此处输入图片描述

在此处输入图片描述

答案3

不确定这是否是 ACM 推荐的,但我同意以这种方式组织作者是很好的。ACM 参考格式由“\authors”生成。您可以使用以下内容自行指定 ACM 参考格式中的作者:

\renewcommand{\authors}{Author 1, Author 2,...}

答案4

似乎很多 ACM 会议的组织者并不关心参考文献格式中出现的上标数字。我见过几篇发表的论文中就有这些数字。

论文中的空间应该用于实际讨论。不要被 ACM 的规则所束缚。当你最终需要多行作者块时,我会按照你描述的方式去做。

相关内容