需要 apa6 中的附加标题

需要 apa6 中的附加标题

我正在写一份简短的报告,标题页必须是这样的:

简短报告

对……的反应

作者
单位

我解决了这个问题,方法是使用作者代替“对...的反应”,让隶属关系为空(使用“ ~”),然后用于\note输入作者和隶属关系。但这样做,我只在第一个内容页面(重复标题)上得到“简短报告”。我更喜欢“对...的反应”,那么有没有办法把“简短报告”放进去多于首页上的常规标题?还是我也必须手动输入重复的标题?

当然我可以添加代码:

\title{Short Report }
\shorttitle{Stigma ...}
\author{Reaktionen auf ...}
\affiliation{~  } 
\note{Henning \\ University of XyZ} 

如果我尝试换行,\title我会收到各种错误代码,例如:

! Argument of \@sect has an extra }.
<inserted text>
\par
l.80 \maketitle
I've run across a `}' that doesn't seem to match anything.
For example, `\def\a#1{...}' and `\a}' would produce
this error. If you simply proceed now, the `\par' that
I've just inserted will cause me to report a runaway
argument that might be the root of the problem. But if
your `}' was spurious, just type `2' and it will go away.

不知道 Texmaker 在这里想告诉我什么;换行符\note可以正常工作。

答案1

只需在标题中使用两行并定义一个\shorttitle

\documentclass{apa6}

\usepackage{kantlipsum} % just to produce mock text

\begin{document}
\title{Short Report\\[\baselineskip]The real title}
\shorttitle{The real title}
\author{Henning}
\affiliation{University of XyZ}

\abstract{An abstract}

\maketitle

\section{Text}
\kant[1-20]

\end{document}

首页(仅限顶部)

在此处输入图片描述

第二页和第三页(仅限顶部)

在此处输入图片描述


如果man使用该选项,可以采取一个简单的措施:

\title{Short Report\protect\\[\baselineskip]The real title}

相关内容