为何我的标题信息不显示?

为何我的标题信息不显示?

我刚刚开始学习如何使用 latex,但已经遇到了一点困难。我一直使用 latex 文档 wiki 作为指南。我编写排版的编辑器是 TeXworks。以下是我的代码:

\documentclass[11pt, a4paper]{report}
\begin{document}
\title{it's so hard out here}
\author{your main man}
\date
\maketitle
\begin{abstract}
i'll start that right here
\end{abstract}


now it is time to g et to typesetting effectively
\end{document}

现在我遇到的问题是,当我转换为 PDF 时,标题信息没有显示。我做错了什么吗?

答案1

\date需要一个参数,即一个日期,用一对“封闭” {}。如果这种情况不普遍,\date则使用它能找到的下一个标记,即\maketitle在 OP 的帖子中。这当然很糟糕,因为只要没有发出,\date它本身就不会被使用。\maketitle

原则上,\date如果请求当前日期则根本不需要。(\maketitle使用\todaythen)

\documentclass[11pt, a4paper]{report}

\begin{document}
\title{it's so hard out here}
\author{your main man}
\date{1/1/2015}
\maketitle
\begin{abstract}
i'll start that right here
\end{abstract}


now it is time to get to typesetting effectively
\end{document}

在此处输入图片描述

相关内容