从标题页开始 fancyhdr

从标题页开始 fancyhdr

我正在创建一个具有以下格式的乳胶文档:

\documentclass[12pt, letterpaper]{article}

\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{mathptmx}
\usepackage[margin=1in]{geometry}
\usepackage{graphicx}
\usepackage{hyperref}
\usepackage{indentfirst}
\usepackage{setspace,caption}
\captionsetup{font=doublespacing}% Double-spaced float captions
\doublespacing% Double-spaced document text

\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhf{}
\renewcommand{\headrulewidth}{0pt}
\fancyhead[R]{\thepage}
\lhead{MY RUNNING HEAD}

\title{my report title}
\author{my name}
\date{my date}

\begin{document}
\maketitle
\end{document}

事实上,我正在尝试创建一份 APA 格式的文档。现在一切都很好,但问题是我也需要在标题页上显示页眉。此外,当前标题页码显示在页面下方,而根据 APA 格式,我应该将其放在页面顶部的页眉右上角。

我想知道如何fancyhdr从标题页开始应用。或者有没有办法使用我当前的设置自定义第一页?

答案1

据我所知,您希望在标题页上添加页眉。您可以像fancypagestyle以下示例一样添加页眉:

\documentclass[12pt, letterpaper]{article}
\usepackage{fancyhdr}

% Redefine the plain page style
\fancypagestyle{plain}{%
  \fancyhf{}%
  \fancyfoot[R]{\thepage}%
  \renewcommand{\headrulewidth}{0.4pt}% Line at the header invisible
  \renewcommand{\footrulewidth}{0pt}% Footer line not visible with 0pt
  \lhead{MY RUNNING HEAD}
}

\title{my report title}
\author{my name}
\date{my date}

\begin{document}
\maketitle

\clearpage
\subsection{Some section}
And here some text
\end{document}

如果你还想在以下页面上添加页眉,则可以创建另一个,然后用afterfancypagestyle调用它,例如\pagestyle{myotherstyle}\newpage

% Define another page style
\fancypagestyle{myotherstyle}{%
  \fancyhf{}%
  \fancyfoot[R]{\thepage}%
  \renewcommand{\headrulewidth}{0.4pt}% Line at the header invisible
  \renewcommand{\footrulewidth}{0pt}% Footer line not visible with 0pt
  \lhead{MY OTHER RUNNING HEAD}
}

相关内容