[Tex/LaTex] How to remove a blank page “before” the title page

blank-pagetitles

I'm using MiKTeX 2.9 and TeXniCenter for writing my thesis. I have a lot of packages and everything was going well, until last night that a blank page with ".0" written in the top left corner kept generating before my title page and still I cannot figure out how to remove it. Is there any kind of command that I can use except \let\cleardoublepage\clearpage?

I have been searching heavily but could not find a useful way. I'd appreciate any help.

Best Answer

For what it's worth or if all else fails, you can always remove the first page by adding the following to your document preamble:

\usepackage{atbegshi}% http://ctan.org/pkg/atbegshi
\AtBeginDocument{\AtBeginShipoutNext{\AtBeginShipoutDiscard}}

This should affect only the next shipout at the document start, which defaults to the first page.