
現在、論文の著者は 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} \\
}