I am trying to insert a blank page in a article class document, and I want it to have the same headers and footers as the rest of the document (which I have already set up using fancyhdr). However, when I insert the blank page, both its header and its footer change to what I assume is the default for this type of document (page number on the top left, section name on the top right, and nothing on the bottom), whereas the rest of the document has my customized headings (constant text on the top left and right and page number at the bottom).
I have this code on the preamble:
\usepackage{fancyhdr}
\pagestyle{fancy}
\lhead{this is left}
\rhead{this is right}
And I am inserting the blank page using \newpage, as follows:
\newpage\null\thispagestyle{myheadings}\newpage
Thanks!!
\documentclass{...}and ending with\end{document}. – Apr 04 '14 at 19:12