[Tex/LaTex] Remove page numbers in a »titlepage« environment

header-footerpage-breakingpage-numberingtitles

I use the titlepage enviroment in my thesis and want to remove the page numbers on my title pages (where I've got 2) pages. The titlepage enviroment does that for the first site automatically but not for the following pages so that there are page numbers with page 2 etc.

\begin{titlepage}
  % no page numbers at page 1
  \newpage
  % page numbers show up one page 2 and following pages
\end{titlepage}

I've already tried to get rid of the page numbers by trying the advices from »removing page numbers, but not headers« and »How to get rid of page numbers« but without any success.

Edit #1

Elmar was right, \pagestyle{empty} works when you place it in front of the enviroment like so:

\pagestyle{empty}
\begin{titlepage}
  % no page numbers at page 1
  \newpage
  % now even the following pages omit the page numbering
\end{titlepage}

Best Answer

\pagestyle{empty} doesnt work?