删除 LaTeX 文档中的日期

删除 LaTeX 文档中的日期

我开始用 LaTeX 格式写一篇论文,但标题后面却显示今天的日期。我不知道为什么会显示这个日期,因为似乎没有任何命令可以指示它。

代码:

\documentclass[20pt]{article}
\title{The Derivative}
\begin{document}
\maketitle
   Learning goals: We start to develop ...
\end{document}

结果: 在此处输入图片描述


我如何删除该日期?

答案1

\maketitle依赖于三个宏:\title\author\date。如果你不指定后者,则默认使用今天的日期。因此你只需将其定义为空:

\documentclass[20pt]{article}
\title{The Derivative}
\date{}
\begin{document}
\maketitle
   Learning goals: We start to develop ...
\end{document}

相关内容