acmart-Paket: Erzwingen einer bestimmten Anzahl von Autoren in der ersten Reihe

acmart-Paket: Erzwingen einer bestimmten Anzahl von Autoren in der ersten Reihe

Gibt es eine Möglichkeit, eine bestimmte Anzahl von Autoren pro Zeile zu erzwingen inacmart? Mir ist bewusst, dass es diesen Befehl gibt: \settopmatter{authorsperrow=4}; ich möchte jedoch, dass die erste Zeile nur 2 Autoren enthält und der Rest dann 3.

Ich habe derzeit beispielsweise Folgendes: Bild

Und wenn ich einen „leeren“ Autor hinzufüge, um die erste Zeile auf zwei Autoren zu erzwingen, erhalte ich: Bildbeschreibung hier eingeben

Gibt es eine Möglichkeit, die erste Zeile besser zu zentrieren, um eine große Lücke zu vermeiden? Oder einfach zwei Autoren in die erste Zeile zu zwängen?

Zum Kontext hier das Beispiel-Latex-Dokument zum Generieren des zweiten Bildes:

\documentclass[sigconf,screen]{acmart}
\begin{document}

\title[Sample Title]{Sample Title}

\author{Jane Doe}
\orcid{xxxx-xxxx-xxxx-xxxx}
\affiliation{%
  \institution{Institution}
  \state{State}
  \country{USA}
}


%%Block to force only two authors on first line
\author{~}
\affiliation{%
\institution{~}
\state{~}
\country{~}
}
 
\author{Jane Doe}
\orcid{xxxx-xxxx-xxxx-xxxx}
\affiliation{%
  \institution{Institution}
  \state{State}
  \country{USA}
}
\author{Jane Doe}
\orcid{xxxx-xxxx-xxxx-xxxx}
\affiliation{%
  \institution{Institution}
  \state{State}
  \country{USA}
}

\author{Jane Doe}
\orcid{xxxx-xxxx-xxxx-xxxx}
\affiliation{%
  \institution{Institution}
  \state{State}
  \country{USA}
}

\author{Jane Doe}
\orcid{xxxx-xxxx-xxxx-xxxx}
\affiliation{%
  \institution{Institution}
  \state{State}
  \country{USA}
}

\author{Jane Doe}
\orcid{xxxx-xxxx-xxxx-xxxx}
\affiliation{%
  \institution{Institution}
  \state{State}
  \country{USA}
}

\author{Jane Doe}
\orcid{xxxx-xxxx-xxxx-xxxx}
\affiliation{%
  \institution{Institution}
  \state{State}
  \country{USA}
}

\author{Jane Doe}
\orcid{xxxx-xxxx-xxxx-xxxx}
\affiliation{%
  \institution{Institution}
  \state{State}
  \country{USA}
}

\author{Jane Doe}
\orcid{xxxx-xxxx-xxxx-xxxx}
\affiliation{%
  \institution{Institution}
  \state{State}
  \country{USA}
}

\author{Jane Doe}
\orcid{xxxx-xxxx-xxxx-xxxx}
\affiliation{%
  \institution{Institution}
  \state{State}
  \country{USA}
}

\author{Jane Doe}
\orcid{xxxx-xxxx-xxxx-xxxx}
\affiliation{%
  \institution{Institution}
  \state{State}
  \country{USA}
}

\maketitle

\end{document}

verwandte Informationen