我该如何修改以下 MWE,使其故意给出一个空白页,以便始终工作(即不仅适用于奇数页)?:
\documentclass[twoside=false]{scrbook}
\newcommand*{\blankpage}{%
\par\vspace*{\fill}%
{\centering This Page Is Left Blank Intentionally\par}
\vspace{\fill}%
}
\AtEndDocument{\clearpage%
\ifodd\value{page}\else%
\blankpage
\thispagestyle{empty}%
\newpage
\vfill
\fi}
\begin{document}
\chapter{Chapter}
\chapter{Chapter}
\end{document}
注意:我知道这可能很容易做到 - 但是我对 LaTeX 还很陌生,我尝试过的所有方法都会导致错误。
答案1
只需删除\ifodd
其\else
和\fi
\documentclass[twoside=false]{scrbook}
\usepackage{lipsum}
\newcommand*{\blankpage}{%
\par\vspace*{\fill}%
}
\AtEndDocument{\clearpage%%
\blankpage
\thispagestyle{empty}}
\begin{document}
\tableofcontents
\chapter{Chapter}
\lipsum[1-5]
\chapter{Chapter}
\lipsum[1-20]
\end{document}