Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save philipptempel/5220000 to your computer and use it in GitHub Desktop.
Save philipptempel/5220000 to your computer and use it in GitHub Desktop.
LaTeX: How to have "This page intentionally left blank"
\documentclass[twoside]{scrreprt}
\makeatletter
\def\cleardoublepage{\clearpage%
\if@twoside
\ifodd\c@page\else
\vspace*{\fill}
\hfill
\begin{center}
This page intentionally left blank.
\end{center}
\vspace{\fill}
\thispagestyle{empty}
\newpage
\if@twocolumn\hbox{}\newpage\fi
\fi
\fi
}
\makeatother
\usepackage[english]{babel}
\usepackage{lipsum}
\begin{document}
\lipsum[1-4]
\cleardoublepage
\lipsum[6-12]
\end{document}
@jorisperrenet
Copy link

In think you mean "This page is intentionally left blank." with the "is".

@philipptempel
Copy link
Author

philipptempel commented Jun 5, 2022

In think you mean "This page is intentionally left blank." with the "is".

No, indeed,` it is grammatically correct to say "this page intentionally left blank". See for example https://english.stackexchange.com/questions/116053/this-page-intentionally-left-blank and also https://www.quora.com/What-is-the-grammar-behind-This-page-intentionally-left-blank-Why-is-is-omitted

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment