标题中不显示日期

标题中不显示日期

有人能告诉我为什么我的文档标题中没有显示日期吗?文档类别是proc。如果我删除\date{\today}标题,则会向下移动,但当我保留标题时不会显示日期。

\title{Title}
\author{Me\\
        Email\\}
\date{\today}
\maketitle

答案1

这可能是由于定义\maketitle不包含日期。因此,您可能需要检查一下它在哪里\def\@maketitle(它可能在您的样式文件/文档类中)。找到定义后,您可以将日期插入其中。

文档proc类没有排版日期\maketitle

\def\@maketitle{%
  \vbox to 2.25in{%
    \hsize\textwidth
    \linewidth\hsize
    \vfil
    \centering
    {\LARGE \@title \par}
    \vskip 2em
    {\large \begin{tabular}[t]{c}\@author \end{tabular}\par}
    \vfil}}

将其与article文档类进行对比:

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

相关内容