如何在 ACM conf 格式中将 4 位作者放在一行中?

如何在 ACM conf 格式中将 4 位作者放在一行中?

我的论文中有四位作者,默认排列如下:

Author1            Author2
Author3            Author4

有没有办法强制格式将作者放在一行中,如下所示?

Author1            Author2         Author3            Author4

代码如下:

\documentclass[sigconf]{acmart}

\renewcommand\footnotetextcopyrightpermission[1]{} 

\setlength{\textfloatsep}{5pt}
\setlength{\abovedisplayskip}{1.5pt}
\setlength{\belowdisplayskip}{1.5pt}
\usepackage[font=small,skip=0pt]{caption}
%\acmDOI{10.475/123_4}

% ISBN
%\acmISBN{123-4567-24-567/08/06}

%Conference
\acmConference[Conf'18]{International Conference on Something}{May 2018}{Earth} 
%\acmYear{2018}
\copyrightyear{2018}

%\acmPrice{15.00}

 \setcopyright{none} 

\settopmatter{printacmref=false} % Removes citation information below abstract
\makeatletter
\def\-copyrightspace{\relax}
\makeatother

\begin{document}
\title{Document Title}


\author{Author1}
\affiliation{%
  \institution{Company 1}}

\author{Author2}
\affiliation{%
  \institution{Company2}}

\author{Author3}
\affiliation{%
  \institution{Company2}}

 \author{Author4}    
 \affiliation{%
  \institution{Company2}}

我想知道是否有办法将所有四位作者放在一行中。目前,它们分为两行,每行两位作者,如上所示。

答案1

该类acmart允许通过插入例如来设置每行的作者数量

\settopmatter{authorsperrow=4}

\documentclass{acmart}

在您的示例中,这导致 在此处输入图片描述

相关内容