[Tex/LaTex] How to reclaim space from removing headers and footers

fancyhdrheader-footermargins

I'm using the fancyhdr for headers and footers in most of my document, however there are some pages, such as the title page, for which headers and footers aren't wanted, and for these pages I've set

\pagestyle{empty}

However LaTeX still sets aside space for the nonexistent header and nonexistent footer on these pages, meaning that I can't use that space for title page elements, or for example text on the imprint page that I want to be allowed to extend down closer to the bottom of the page.

How can I reduce the header and footer to zero, but only locally on selected pages (preferably a range of pages) where a header and footer aren't required, and without affecting the other pages where a header and footer are used?

Best Answer

You should probably use \thispagestyle{empty} rather than \pagestyle. To overprint the header space you can use

\vspace*{-20pt}%
\enlargethispage{40pt}%

where the first line moves everything up overprinting the top, and the second line increases the page body. Choose lengths to suit your requirements.

Related Question