I understand the use of \@openrightfalse to force a chapter to start on an even page. When the previous chapter were to end on an even page, this would force an empty odd page. How do I change the content of the filler page, e.g. to "this page intentionally left blank"?
Asked
Active
Viewed 984 times
2
Simon Kuang
- 1,861
1 Answers
2
You can do this just with commands from memoir. If you are using a standard class nextpage offers some additional convenience commands, such as \cleartoevenpage[], which work similarly to those defined by memoir. Here, \cleartoevenpage[] is used in a redefinition of memoir's \clearforchapter:
\documentclass{memoir}
\usepackage{kantlipsum}
\renewcommand\clearforchapter{%
\cleartoevenpage[\thispagestyle{empty}A beetle in a box.]}
\begin{document}
\chapter{one}
\kant[1-4]
\chapter{two}
\kant[5]
\chapter{three}
\kant[6-10]
\end{document}
cfr
- 198,882

openany(which sets\@openrightfalsethen) does not mean that a chapter does start only on even pages then – Jul 28 '15 at 18:57memoir. – Simon Kuang Jul 28 '15 at 19:02memoir. – cfr Jul 28 '15 at 20:28koma-script, there's also an answer formemoir. – barbara beeton Jul 28 '15 at 20:39