apa6 包:标题行超出文本宽度

apa6 包:标题行超出文本宽度

我使用的是 apa6 软件包,文档模式为“doc”。现在我遇到了一些标题行问题。在偶数页上,标题行超出了左侧的文本宽度,而在奇数页上,标题行超出了右侧的文本宽度。

偶数页: 甚至

奇数页: 奇数页 示例代码:

\documentclass[doc]{apa6}
\usepackage[american]{babel}
\usepackage{csquotes}
\usepackage[style=apa,sortcites=true,sorting=nyt]{biblatex}
\DeclareLanguageMapping{american}{american-apa}

\ifapamodeman{\setlength{\textwidth}{5.76772in}%
\setlength{\textheight}{9.19291in}}{}

\title{Sample APA-Style Document Using the \textsf{apa6} Package}
\author{Brian D. Beitzel}
\affiliation{SUNY Oneonta}
\leftheader{Beitzel}
\abstract{This is the abstract}
\keywords{APA style, demonstration}
\begin{document}
\maketitle

Text long enough to fill several pages...
\end{document}

我猜这是这个原本很优秀的 apa6 软件包的一个错误。有没有一种快速(但粗糙)的方法来解决这个问题?

答案1

\setlength{\headwidth}{\textwidth}

就在之前\begin{document}

相关内容