现在我正在使用\title
来定义标题并\maketitle
显示它。如何在标题中放置多行?我需要遵守 APA 第 6 版格式,并且根据我使用的书,我需要一个包含多行的简单标题页,所有行都具有相同的字体和大小。我正在使用apa6
文档类。
答案1
您可以使用\parbox
带有居中内容的受保护内容;在其中\parbox
,您可以使用\\
来引入换行符:
\documentclass{apa6}
\title{\protect\parbox{\textwidth}{\protect\centering A title\\ spanning\\ three lines}}
\author{The Author}
\begin{document}
\maketitle
\end{document}
该\maketitle
命令可能会对您的目的产生过多限制,因此您可以简单地从头开始设计自己的标题信息,而无需使用、、\title
等;在下面的示例代码中,我使用了一个简单的环境来集中信息,并且您可以在这个环境中根据您的特定需要来格式化信息:\author
\maketitle
center
\documentclass{apa6}
\begin{document}
\thispagestyle{empty}
\begin{center}
\fontsize{12}{14}\selectfont
A title\\
spanning\\
three lines
\vspace{1ex}
The Author
\end{center}
\end{document}