从首页删除页脚

从首页删除页脚

我使用以下命令在我的家庭作业的所有页面上制作页眉和页脚:

\usepackage{fancyhdr}
\pagestyle{fancy}
\lhead{Math 185 Spring 2014}
\chead{Problem Set 3}
\rhead{Jacob Kent}
\renewcommand{\headrulewidth}{0.25pt}
\renewcommand{\footrulewidth}{0.25pt}

我该如何删除文档第一页的页眉/页脚?我希望它出现在所有其他页面上,但不是第一页。

答案1

将其添加到文档开头附近的某个位置。\maketitle如果适用,我通常会将其放在该位置附近。

\thispagestyle{empty}

相关内容