Wednesday, August 04, 2010

Blank Un-numbered pages in a latex manuscript

I recently submitted my MS thesis to the university graduate school. After a couple of days, I got an email from them saying:

Your manuscript requires three blank, unnumbered pages: one at the beginning of your manuscript, the second one after the copyright page and the third one at the end of your manuscript.


Now, since my thesis was formatted using latex, it took a little bit of searching. The solution was quite simple, but not so easy to find. Thanks Night Walker.

\newpage
\thispagestyle{empty}
\mbox{}

Add the above block of code to your main document and you will be good to go. Essentially this creates a new page with an empty style, and adds an mbox with empty text.

No comments: