2

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"?

Simon Kuang
  • 1,861

1 Answers1

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}

Beetles...

cfr
  • 198,882