正面有章节,背面有空白回忆录

正面有章节,背面有空白回忆录

我使用带有选项的回忆录类openright。此外,我还想让章节开始前的背面页面空白,例如:

Chapter ends on recto: Next verso blank then next chapter.
Chapter ends on verso: Blank recto, blank verso, then next chapter.

是否有一个选项可以自动实现这一点,还是我需要在每一章开始时手动创建它?

答案1

您要求的是默认memoir行为。当然,您可以更改此设置:

% clearforchapprob.tex  SE 568204
\documentclass{memoir}
%% do not have a completely blank page before a chapter
\renewcommand{\clearforchapter}{\cleartooddpage[Non blank page]}

\begin{document}
\chapter{First}
Some text.
\chapter{Second}
More text.
\end{document}

尝试使用或不使用上述 MWE\renewcommand{\clearforchapter}{...}

BTWopenright是默认memoir选项。

相关内容