I want to put a footer on page 1 but not on other pages. I also want to put a header on all pages. Could some one tell me how I can do that? The code I am using so far (only relevant lines shown):
\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}
This generates a header on all pages (which is good), but also a footer on all pages. I don't want footer on pages other than the first.
\lfoot{}after the titlepage to clear the footer? – Kurt Oct 19 '12 at 17:56