删除 apa6 man 中其他页面的运行头

删除 apa6 man 中其他页面的运行头

我知道我不应该使用 apa6 手稿模板来写我的论文,但我实在没有其他看起来这么好看的东西。无论如何,我想删除所有页面的页眉。我已经成功删除了标题页,但其他页面没有。另外,我确实想保留页码。这是我用来删除标题页页眉的方法,但不知何故 {otherpage} 不起作用。

\fancypagestyle{titlepage}{%
    \lhead{\MakeUppercase{}}%
    \rhead{\thepage}%
}
\fancypagestyle{otherpage}{%
    \lhead{\MakeUppercase{empty}}%
    \rhead{\thepage}%
}

答案1

APA6 将默认页面样式设置为otherpage类内,因此当您更改页面样式时,您需要\pagestyle{otherpage}在重新定义后发出新的页面样式来覆盖原始页面样式。标题页定义之所以有效,是因为发出命令时设置了页面样式\maketitle,因此新定义有效。

\documentclass[man]{apa6}
\shorttitle{Title}
\title{Title}
\author{Author}
\usepackage{lipsum}
\fancypagestyle{titlepage}{%
    \lhead{}%
    \rhead{\thepage}%
}
\fancypagestyle{otherpage}{%
    \lhead{}%
    \rhead{\thepage}%
}
\pagestyle{otherpage}
\begin{document}
\maketitle
\lipsum
\end{document}

相关内容