I'm using the fancyhdr package to include a header on each page. In order to surpress the section title also being cited in the header of each page, I'm using the command \fancyhf{}, however this also erases all page numbers after the first page. Does anybody know how to get them back in?
See code below
\documentclass[10pt, letter]{article}
\usepackage{setspace}
\usepackage[margin=1.250in]{geometry}
\singlespacing
\usepackage{fancyhdr}
\fancyhf{}
\pagestyle{fancy}
\rhead{\textcolor{gray}{Mock Draft}}
\renewcommand{\headrulewidth}{0pt}
\usepackage[table]{xcolor}% http://ctan.org/pkg/xcolor
\begin{document}
xxxxx
\clearpage
xxxx
\clearpage
xxxx
\end{document}
Many thanks!
\thepageinto the appropriate header/footer part (\rhead,\cfoot... etc.) – Alan Munn Jul 01 '13 at 18:17\maketitlecommand in your real document. – egreg Jul 01 '13 at 20:42\fancyhf{}the first page has the page number. – karlkoeller Jul 01 '13 at 20:57