在双面文档中添加“此页故意留空。”占位符页面

在双面文档中添加“此页故意留空。”占位符页面

我希望在我的论文中添加占位符,以确保所有章节都从奇数页开始。这些占位符应包含“此页故意留空。”,打印在页面中央。我使用的是文档类:

\documentclass[a4paper,12pt,twoside]{report} 

并且在我的乳胶代码序言中我放置了以下内容:

\makeatletter
\def\cleardoublepage{\clearpage\if@twoside \ifodd\c@page\else
    \hbox{}
    \vspace*{\fill}
    \begin{center}
        This page was intentionally left blank.
    \end{center}
    \vspace{\fill}
    \thispagestyle{empty}
    \newpage
    \if@twocolumn\hbox{}\newpage\fi\fi\fi}
\makeatother

我在之前的帖子里找到了https://latex.org/forum/viewtopic.php?t=20410。但是,此代码片段似乎没有达到预期的效果。我也尝试过 hack如何制作“故意留空”的页面?但这似乎也不起作用。

答案1

设法让它工作,只需改变:

\documentclass[a4paper,12pt,twoside]{report}

\documentclass[a4paper,12pt,twoside]{book}

相关内容