fancyhdr:仅在第 1 页包含脚注,但在所有页面上包含页眉

fancyhdr:仅在第 1 页包含脚注,但在所有页面上包含页眉

我想在第 1 页上放置页脚,但不在其他页面上放置页脚。我还想在所有页面上放置页眉。有人能告诉我该怎么做吗?我目前使用的代码(仅显示相关行):

\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhead[CO,CE]{This is my header text}
\renewcommand{\headrulewidth}{0pt}
\pagenumbering{gobble}

\begin{document}

\maketitle
\thispagestyle{fancy}
\lfoot{This is my footer text}

这会在所有页面上生成页眉(这很好),但也会在所有页面上生成页脚。除了第一页之外,我不想在其他页面上生成页脚。

答案1

看看这个 MWE,它应该可以为你做到这一点:

%http://tex.stackexchange.com/questions/78349/fancyhdr-include-footnote-only-on-page-1-but-header-on-all-pages
\documentclass[twoside]{report}
\usepackage[ansinew]{inputenc}
\usepackage{fancyhdr}
\usepackage{lipsum}

\pagestyle{fancy}
\fancyhead[CO,CE]{This is my header text}
\renewcommand{\headrulewidth}{0pt}
\pagenumbering{gobble}

\title{Test Paper}
\begin{document}

\maketitle

%following page with footer
\thispagestyle{fancy}
\lfoot{This is my footer text}
\section{Section I}
\lipsum[1]

\clearpage
\lfoot{}       % this was missing!
\section{Section}
\lipsum[1-2]

\end{document}

相关内容