使用 apa6 居中页脚页码

使用 apa6 居中页脚页码

我的大学要求我偏离apa6论文格式,并将页码置于页脚中央(而不是右上角)。

我见过一些使用的例子fancyhdr,但似乎找不到适合我的情况。我能够将页码居中,但标题页除外。然而,这也导致我在后续页面中丢失了页眉。

我有一个 MWE,但在剪切和粘贴时丢失了它。到目前为止,我有:

\documentclass[man,12pt,apacite,natbib,noextraspace]{apa6}

\usepackage[utf8]{inputenc}
\usepackage{pslatex} %Times font
\usepackage[english]{babel}
\usepackage{blindtext}

\shorttitle{Shared Theories}

\title{Exceptional Thesis}
\author{Albert Einstein}
\affiliation{University of Unicorn}

\begin{document}

\maketitle

\section{Introduction}
\blindtext
\subsection{Something else}
\blindtext

\end{document}

答案1

apa6通过设置来定义titlepage和设置样式。otherpagefancyhdr

重新定义只是清除\rhead{}并设置\cfoot{\thepage}

然后使用\maketitle调用\pagestyle{titlepage},因此很可能需要对titlepageotherpage进行稍微的修改,而保持其他设置不变。

\documentclass[man,12pt,apacite,natbib,noextraspace]{apa6}

\usepackage[utf8]{inputenc}
\usepackage{pslatex} %Times font %REALLY????
\usepackage[english]{babel}
\usepackage{blindtext}

\makeatletter

\fancypagestyle{titlepage}{%
  \rhead{}%
  \lhead{\rheadname: \MakeUppercase{\@shorttitle}}%
  \cfoot{\thepage}%
}


\fancypagestyle{otherpage}{%
  \rhead{}%
  \lhead{\MakeUppercase{\@shorttitle}}%
  \cfoot{\thepage}%
}
\makeatother

\shorttitle{Shared Theories}

\title{Exceptional Thesis}
\author{Albert Einstein}
\affiliation{University of Unicorn}

\begin{document}

\maketitle
\pagestyle{otherpage}

\section{Introduction}
\blindtext
\subsection{Something else}
\blindtext

\end{document}

在此处输入图片描述

相关内容