I need a command to create a page break, and here's my attempt:
\documentclass[12pt]{article}
\usepackage{lipsum}
\newcommand\blankpage{%
\thispagestyle{empty}
\clearpage\mbox{}\clearpage}
\begin{document}
\lipsum[1]
\blankpage
\lipsum[2]
\end{document}
However, I don't want the page number to appear in the page break. The command \thispagestyle{empty} doesn't work, how can I do it?
\pagebreakwhich you don't want to use. There is alsocleardoublepage.and theemptypagepackage. There is alsoreportandbookwhich introduce those pages automatically. You most likely want to go with the last thing of changng the class. – Johannes_B Aug 22 '16 at 04:31\newcommand\blankpage{\clearpage\thispagestyle{empty}\mbox{}\clearpage}– Johannes_B Aug 22 '16 at 04:38thispagestyle{empty}before\clearpage? Is that what you are suggesting? – RobertP. Aug 22 '16 at 04:41\clearpageAFTER\thispagestyle{empty}. – RobertP. Aug 22 '16 at 04:43