
Tenho 5 autores para um artigo adicionado atualmente da seguinte forma:
\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} \\
}
Atualmente eles são exibidos na mesma linha e sobrepostos da seguinte forma:
Achei que o LaTeX quebraria automaticamente essa linha, mas aparentemente não. Eu preferiria ter 3 na linha superior e 2 abaixo, mas não descobri como fazer isso corretamente. Encontrei alguns hacks, mas perdi o estilo na linha inferior.
Editar:Depois de algumas investigações, parece ser o pacote de estilo usado que resolve o problema. Temos que usar este pacote de estilos, pois é uma tarefa. Aqui está o código de estilo referente às diferentes \and
tags.
{\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
}
Qual seria a melhor maneira de contornar isso?
Responder1
Combinando os comandos \And
e \AND
, assim:
\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} \\
}