如何在第一页上不显示花哨的页眉?

如何在第一页上不显示花哨的页眉?

我可以删除顶部栏,但不仅仅是在第一页。代码

\documentclass{article}
\usepackage{lipsum}  
\usepackage{graphicx}
\usepackage{fancyhdr}% http://ctan.org/pkg/fancyhdr

%http://tex.stackexchange.com/q/30228/13173
\newsavebox{\myheadbox}% Heading storage box
\pagestyle{fancy}
\rhead{\textsc{School}
\cfoot{\thepage}

\begin{document}
\lipsum
\lipsum
\end{document}

输出:第一页上可见的顶部栏。

TeXLive:2016
操作系统:Debian 8.5 64 位

答案1

brian-ammon 的回答;将其放在第一页的开头

\thispagestyle{empty}

输出:有效!

相关内容