为什么需要这个表格环境?

为什么需要这个表格环境?

这个帖子我发现的定义\maketitle是:

\def\@maketitle{%
  \newpage
  \null
  \vskip 2em%
  \begin{center}%
  \let \footnote \thanks
    {\LARGE \@title \par}%
    \vskip 1.5em%
    {\large
      \lineskip .5em%
      \begin{tabular}[t]{c}%
        \@author
      \end{tabular}\par}%
    \vskip 1em%
    {\large \@date}%
  \end{center}%
  \par
  \vskip 1.5em}
\fi

我的问题是:当标题和日期没有排版时,为什么\author在环境中会排版?tabular

答案1

您必须用以下定义来补充这一点\and

\end{tabular}\hskip 1em plus .17fil\begin {tabular}[t]{c}

因此如果你指定

\author{A. Uthor \\ Here University \and W. Riter \\ There University}

作者部分将变为(重新格式化并\and替换为清晰)

\begin{tabular}[t]{c}%
  A. Uthor \\ Here University
\end{tabular}
\hskip 1em plus .17fil
\begin {tabular}[t]{c}
  W. Riter \\ There University
\end{tabular}\par

因此你得到distinct tabular,通过一些水平间距分隔。如果预计只有一位作者,则tabular不需要,但通常情况并非如此。

相关内容