When using fancyhdr, how do you remove the top horizontal rule?
I do not want a header at all, just a footer.
This is what I do now:
\documentclass{article}
\usepackage{fancyhdr}
\pagestyle{fancy}
\lfoot{text}
\cfoot{text 2}
\rfoot{text 3}
\begin{document}
Foo Bar
\end{document}
\renewcommand. Is there any difference between what you wrote and\setlength{\headrulewidth}{0pt}? – Jonathan Gleason Jan 17 '13 at 15:16fancyhdrimplements these lengths as macros and not actual lengths, so\setlengthsimply won't work for them. Macros don't consume any of TeX's length registers, which is part of the motivation that thefancyhdrauthor gives for this implementation. It is, however, a bit unintuitive and non-standard. Generally lengths would be set using\setlengthbut in this case they are not actually lengths in the underlying coding. – Alan Munn Jan 17 '13 at 16:33