Document Classes ⇒ Remove header on only one page
Remove header on only one page
I'm writing my CV in Latex, and I've encountered a layout problem. I use \pagestyle{fancy} where I've created a nice header. I've made the footer write out the page numer of total number of pages, e.g. "1(4)" on the first page, "2(4)" on the second and so on. Now I want to remove the header on the first page, but keep my fancy footer. When I change the style to plain it simply writes the page number e.g. "1" etc. Can anyone help me?
Cheers,
Ida
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
Re: Remove header on only one page
\thispagestyle{empty}
no header and footer will be printed.
Remove header on only one page
Yes, I've tried that, but the thing is that I want to keep my fancy footer and only remove the header. Thanks anyway though!
/Ida
corderin wrote:I guess yo have to typ:
\thispagestyle{empty}
no header and footer will be printed.
Re: Remove header on only one page
\thispagestyle{plain}
your footer will remain.

Try the package fancyhdr, look at http://www.ctan.org/, I hope you find a solution.
- Stefan Kottwitz
- Site Admin
- Posts: 10324
- Joined: Mon Mar 10, 2008 9:44 pm
Remove header on only one page
you could use \fancypagestyle{plain}{...} to redefine the plain style, that's described in the fancyhdr documentation.
Stefan
Remove header on only one page
I will try your suggestion, it seems to be just what I need! =)
Thanks,
/Ida
Stefan_K wrote:Hi idaham,
you could use \fancypagestyle{plain}{...} to redefine the plain style, that's described in the fancyhdr documentation.
Stefan