acmart 패키지: 특정 수의 작성자를 첫 번째 행에 강제로 배치

acmart 패키지: 특정 수의 작성자를 첫 번째 행에 강제로 배치

행당 특정 수의 작성자를 강제로 적용하는 방법이 있습니까?에이마트? 나는 다음 명령이 있다는 것을 알고 있습니다: \settopmatter{authorsperrow=4}; 그러나 첫 번째 행에는 2명의 저자만 포함하고 나머지에는 3명의 저자를 포함하고 싶습니다.

예를 들어, 현재 다음이 있습니다. 영상

그리고 첫 번째 줄에 두 명의 작성자를 강제로 적용하기 위해 "빈" 작성자를 추가하면 다음과 같은 결과를 얻습니다. 여기에 이미지 설명을 입력하세요

큰 간격을 피하기 위해 첫 번째 행을 중앙에 더 잘 배치할 수 있는 방법이 있습니까? 아니면 두 명의 저자를 첫 번째 줄에 강제로 입력하게 하시겠습니까?

상황에 맞게 두 번째 이미지를 생성하는 샘플 라텍스 문서는 다음과 같습니다.

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

관련 정보