有人能告诉我为什么我的文档标题中没有显示日期吗?文档类别是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}