Hi again,
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!
Page Layout ⇒ \cleardoublepage with page number?
\cleardoublepage with page number?
Last edited by demon on Wed Feb 11, 2009 11:45 am, edited 1 time in total.
- Stefan Kottwitz
- Site Admin
- Posts: 10290
- Joined: Mon Mar 10, 2008 9:44 pm
\cleardoublepage with page number?
Hi,
it depends on your class and the packages used. Perhaps change the page style empty to plain:
or to fancy or scrheadings or whatever you are using. packages like fancyhdr and scrpage2 are providing commands to solve this problem.
Stefan
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
LaTeX.org admin
- localghost
- Site Moderator
- Posts: 9201
- Joined: Fri Feb 02, 2007 12:06 pm
\cleardoublepage with page number?
Perhaps the fancyhdr manual has a solution (Section 15 - Those blank pages, p. 15).
This solution depends not on the usage of that package.
Best regards
Thorsten¹
Code: Select all
\clearpage{\pagestyle{plain}\cleardoublepage}
Best regards
Thorsten¹
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes[/size]
¹ System: openSUSE 42.2 (Linux 4.4.52), TeX Live 2016 (vanilla), TeXworks 0.6.1
Board Rules
Avoidable Mistakes[/size]
¹ System: openSUSE 42.2 (Linux 4.4.52), TeX Live 2016 (vanilla), TeXworks 0.6.1
Re: \cleardoublepage with page number?
\documentclass[cleardoublepage=plain]{scrreprt} is the solution. Thanks! 

Re: \cleardoublepage with page number?
For the next time, please write which document class you use because solutions to problems like this depend crucially on the document class.