acmart パッケージ: 特定の数の著者を最初の行に強制的に配置

acmart パッケージ: 特定の数の著者を最初の行に強制的に配置

行ごとに特定の数の著者を強制する方法はありますか?アクマート? 次のコマンドがあることは知っています: \settopmatter{authorsperrow=4}; ただし、最初の行には 2 人の著者のみが含まれるようにし、残りの行には 3 人の著者が含まれるようにしたいと思います。

たとえば、現在私はこれを持っています: 画像

そして、最初の行を 2 人の著者に強制するために「空白」の著者を追加すると、次のようになります。 ここに画像の説明を入力してください

大きな隙間を避けるために、最初の行を中央に配置する方法はありますか? または、最初の行に 2 人の著者を強制的に配置する方法はありますか?

コンテキストとして、2 番目の画像を生成するサンプルの LaTeX ドキュメントを次に示します。

\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}

関連情報