回忆录课,在章节前的空白页上写数字

回忆录课,在章节前的空白页上写数字

对于一个图书项目,我正在使用回忆录类:

\documentclass[a5paper,12pt,twoside,onecolumn,
               openright,extrafontsizes]{memoir}

留下空白的左页以便让章节从右侧开始。

问题:有没有办法将图表放在回忆录自动插入的空白页上?我无法将图表放在目录和第一章之间的页面上。

答案1

使用\cleartooddpage提供的宏memoir

% figchapprob.tex  SE 567338
\documentclass{memoir}
\begin{document}
\tableofcontents

\cleartooddpage[\vfill \begin{center} FIGURE \end{center} \vfill]
\chapter{First}

\cleartooddpage[\thispagestyle{plain}\vfill \begin{center} ANOTHER FIGURE \end{center} \vfill]
\chapter{Second}

\end{document}

使用openright选项memoir以 开始章节,\cleardoublepage将章节标题放在奇数页上。 类似于cleartooddpage[<text>]移动到奇数页,只是它会放在<text>原本空白的偶数页上。

这里展示了几个将图形放在章节前通常为空白的页面中心的示例;请根据您的喜好进行修改。

相关内容