为何我的标题没有显示出来?

为何我的标题没有显示出来?

笔记:这个问题的回答不适用于我的问题。

我已经编写了.tex我能想到的最简单的文件:

\documentclass[12pt]{article}
\begin{document}
\title{The Influence of Dopamine on GABAergic and Glutamatergic
  Transmission in the Prefrontal Cortex}
\end{document}

当我从中生成.pdf文件时,标题不显示。当我在调用\title和 调用之间添加文本时\end,文本显示,但标题仍然不显示。

我做错了什么?使用该\title命令的正确方法是什么?

答案1

\title{}只是告诉 LaTeX 标题是什么。它不会产生任何输出。要实际排版标题,请使用\maketitle

\title{My title}
\author{Me}
\date{}% if you don't want a date
\maketitle

相关内容