Page Layout ⇒ \cleardoublepage with page number?
\cleardoublepage with page number?
I just switched to 'twoside', as this is a requirement for my thesis. As far as I know from books there are page numbers on empty pages as well. With \cleardoublepage I won't get a number on the page, how can I change that behaviour to get a number?
Thanks!
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
\cleardoublepage with page number?
it depends on your class and the packages used. Perhaps change the page style empty to plain:
Code: Select all
\makeatletter
\let\ps@empty\ps@plain
\makeatother
Stefan
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
\cleardoublepage with page number?
Code: Select all
\clearpage{\pagestyle{plain}\cleardoublepage}
Best regards
Thorsten¹
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Re: \cleardoublepage with page number?
