LaTeX: 여러 작성자가 같은 줄에 있습니다.

LaTeX: 여러 작성자가 같은 줄에 있습니다.

현재 다음과 같이 추가된 논문에 5명의 저자가 있습니다.

\author{First Author \\
  Affiliation / Address line 1 \\
  {\tt email@domain} \\\And
  Second Author \\
  Affiliation / Address line 1 \\
  {\tt email@domain} \\\And
  Third Author \\
  Affiliation / Address line 1 \\
  {\tt email@domain} \\\And
  Fourth Author \\
  Affiliation / Address line 1 \\
  {\tt email@domain} \\\And
  Fifth Author \\
  Affiliation / Address line 1 \\
  {\tt email@domain} \\
}

현재 그들은 같은 줄에 표시되고 다음과 같이 겹쳐집니다. 여기에 이미지 설명을 입력하세요

나는 LaTeX가 자동으로 이 줄을 끊을 것이라고 생각했지만 분명히 그렇지 않았습니다. 나는 맨 윗줄에 3개, 그 아래에 2개를 갖고 싶지만 이 작업을 제대로 수행하는 방법을 찾지 못했습니다. 몇 가지 해킹을 찾았지만 아래쪽 행의 스타일이 손실되었습니다.

편집하다:일부 조사 결과 문제가 발생한 스타일 패키지가 사용된 것으로 보입니다. 이것은 할당이므로 이 스타일 패키지를 사용해야 합니다. 다음은 다양한 태그에 관한 스타일 코드입니다 \and.

{\def\and{\unskip\enspace{\rm and}\enspace}%
 \def\And{\end{tabular}\hss \egroup \hskip 1in plus 2fil 
       \hbox to 0pt\bgroup\hss \begin{tabular}[t]{c}\bf}%
 \def\AND{\end{tabular}\hss\egroup \hfil\hfil\egroup
      \vskip 0.25in plus 1fil minus 0.125in
       \hbox to \linewidth\bgroup\large \hfil\hfil
         \hbox to 0pt\bgroup\hss \begin{tabular}[t]{c}\bf}
 \hbox to \linewidth\bgroup\large \hfil\hfil
 \hbox to 0pt\bgroup\hss \begin{tabular}[t]{c}\bf\@author 
                        \end{tabular}\hss\egroup
 \hfil\hfil\egroup
}

이 문제를 해결하는 가장 좋은 방법은 무엇입니까?

답변1

다음과 같이 명령 \And과 을 결합합니다.\AND

\author{First Author \\
  Affiliation / Address line 1 \\
  {\tt email@domain} \\\And
  Second Author \\
  Affiliation / Address line 1 \\
  {\tt email@domain} \\\And
  Third Author \\
  Affiliation / Address line 1 \\
  {\tt email@domain} \\\AND
  Fourth Author \\
  Affiliation / Address line 1 \\
  {\tt email@domain} \\\And
  Fifth Author \\
  Affiliation / Address line 1 \\
  {\tt email@domain} \\
}

원하는 결과를 얻었습니다. 여기에 이미지 설명을 입력하세요

관련 정보