acmart 中多个看似不愚蠢的作者隶属关系

acmart 中多个看似不愚蠢的作者隶属关系

好的,所以有一个类似的问题之前被问过,但它使用的是旧的 ACM 风格。

新的 ACM LateX 样式acmart建议您使用多个affiliation命令列出多个从属关系,如下所示:

\author{Baz Quux}
\affiliation{%
    \institution{University of Software Engineering}
    \streetaddress{123 Fakenstra{\ss}e}
    \city{Fakenburg}
    \country{Fakeistan}
    \postcode{POIUYT}
}
\affiliation{%
    \institution{FooCorp}
    \streetaddress{123 Fake Street}
    \city{Fakeville}
    \country{Fakeistan}
    \postcode{QWERTY}
}
\email{[email protected]}

这一切都很好,但是结果(至少在我看来)看起来相当愚蠢并且有点难以阅读,如下所示:

在此处输入图片描述

它还浪费了垂直空间(这对于间距较小的论文来说很重要)。

我怎样才能获得更像接受的答案的结果这个问题

有人建议我使用\additionalaffiliation,但不幸的是,会议坚持要求作者acmart使用没有它的版本

答案1

尝试

\author{Baz Quux}
\additionalaffiliation{%
    \institution{FooCorp}
    \streetaddress{123 Fake Street}
    \city{Fakeville}
    \country{Fakeistan}
    \postcode{QWERTY}
}
\affiliation{%
    \institution{University of Software Engineering}
    \streetaddress{123 Fakenstra{\ss}e}
    \city{Fakenburg}
    \country{Fakeistan}
    \postcode{POIUYT}
}
\email{[email protected]}

PS 我看到会议使用的是旧版本的acmart。我想你仍然可以使用支持 的 ACM 官方版本\additionalaffiliation。我专门添加了此命令来解决这个问题。作为最后的手段,你可以使用

\author{Baz Quux}
\authornote{%
Also with Foo Corp.
}
\affiliation{%
    \institution{University of Software Engineering}
    \streetaddress{123 Fakenstra{\ss}e}
    \city{Fakenburg}
    \country{Fakeistan}
    \postcode{POIUYT}
}
\email{[email protected]}

相关内容