防止空白页被计算

防止空白页被计算

如何避免空白页被计算?在下面的 MWE 中,我希望将带有“一些注释”的页面编号为第 2 页。

\documentclass{scrbook}
\begin{document}
First page
\clearpage\mbox{}\thispagestyle{empty}\clearpage
Some notes
\end{document}

答案1

这会让那些期望左侧有偶数页码的读者感到困惑。

\documentclass{scrbook}

\newcounter{blankpages}
\newcommand{\makeblankpage}{%
  \clearpage
  \mbox{}\thispagestyle{empty}%
  \stepcounter{blankpages}%
  \clearpage
}
\renewcommand{\thepage}{\the\numexpr\value{page}-\value{blankpages}\relax}%

\begin{document}

First page

\makeblankpage

\vspace*{\fill} % just to make a smaller picture

Some notes

\end{document}

在此处输入图片描述

\thepage如果您使用不同的编号方案,则当您切换到阿拉伯数字时应该重新定义。

相关内容