LaTeX 中缺少 \begin{document}、\maketitle

LaTeX 中缺少 \begin{document}、\maketitle

以下代码给出了标题中的错误:

\documentclass{article}

\title{Test}
\author{Test}
\maketitle

\begin{document}
content...
\end{document}

现在我对 LaTeX 完全一窍不通,所以我只想开始为我的课程写一些简单的文章。我会提供你们需要的任何信息来帮助我解决这个问题,但我可能需要一些指引来告诉我应该去哪里找。

我在谷歌上搜索“latex”,点击了第一个链接,找到了一个安装程序包的引用,其中的文件名为ProText,它安装了MiKTeX和TeXstudio。

答案1

\documentclass[11pt,a4paper]{report}

\begin{document}
\title{How to Structure a LaTeX Document}
\author{Mikkel Winther}
\date{November 2015}
\maketitle
\end{document}

请尝试一下,标题和其他功能位于 begin{document} 内

相关内容