apa6e 标题页和摘要页未出现

apa6e 标题页和摘要页未出现

我相信这以前是有效的。我试图将参考页面放在新页面上,并已\renewcommand在 中发出apacite,但现在我遇到了一个全新的问题apa6e,我不确定它是否相关。也许是由于我安装了更新。标题页和摘要页现在丢失了。也许我删除了某些内容,但我忘记了它是什么。

\documentclass{apa6e}
\usepackage[american]{babel}

\begin{document}

\title{Title of Paper}
\shorttitle{Short title}
\author{Name}
\authornote{This is an assignment for .}
\abstract{abstract text }
\date{\today} % or \date{24Jan11} for example

The time has come for all good men to come to the aid of their country test
.  According to , the time has come for all good men to come to the aid of their country.

\end{document}

答案1

您需要使用\maketitle(实际上排版标题页和摘要):

\documentclass{apa6e}
\usepackage[american]{babel}

\begin{document}

\title{Title of Paper}
\shorttitle{Short title}
\author{Name}
\authornote{This is an assignment for .}
\abstract{abstract text }
\date{\today} % or \date{24Jan11} for example

\maketitle

The time has come for all good men to come to the aid of their country test
.  According to , the time has come for all good men to come to the aid of their country.

\end{document}

相关内容