LaTeX: varios autores permanecen en la misma línea

LaTeX: varios autores permanecen en la misma línea

Actualmente tengo 5 autores para un artículo agregados así:

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

Actualmente se muestran en la misma línea y se superponen así: ingrese la descripción de la imagen aquí

Pensé que LaTeX rompería automáticamente esta línea, pero aparentemente no. Preferiría tener 3 en la fila superior y luego 2 debajo, pero no he encontrado cómo hacerlo correctamente. Encontré algunos trucos, pero luego pierdo el estilo en la fila inferior.

Editar:Después de investigar un poco, parece ser el paquete de estilo utilizado el que soluciona el problema. Tenemos que usar este paquete de estilo ya que es una tarea. Aquí está el código de estilo relacionado con las diferentes \andetiquetas.

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

¿Cuál sería la mejor manera de solucionar esto?

Respuesta1

Combinando los comandos \Andy \AND, así:

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

Dio el resultado deseado: ingrese la descripción de la imagen aquí

información relacionada