使用 apa6 类时如何在标题中放置多行?

使用 apa6 类时如何在标题中放置多行?

现在我正在使用\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\maketitlecenter

\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}

在此处输入图片描述

相关内容