I am using a predefined document class that I downloaded from my school website to write my thesis. It creates the front page, table of contents, and then rest of the document in the given sequence. Page numbering starts from the first chapter. My school requires a scanned copy of a signed form right after the table of content. When I insert it, the page numbering starts from the page on which this figure (form takes a whole page) is inserted. I want page numbering to start from my first chapter.
\documentclass[12pt]{gatech-thesis}
\begin{document}
\bibliographystyle{thesis}
\begin{preliminary}
\contents
\end{preliminary}
\pagenumbering{gobble}
\begin{figure}[htp] \centering{
\includegraphics[scale=0.80]{myfile.pdf}}
\end{figure}
\thispagestyle{empty}
\newpage
\pagenumbering{arabic}
\setcounter{page}{1}
\chapter{Introduction}\label{introduction}
\end{document}
Now page number is removed from the page on which I have inserted the figure, but the number '2' is showing up on the introduction section.
This means that \setcounter{page}{1} didn't work.
How should I fix this problem?

book, butscrbookor others are also possible of course). – bers Jul 14 '15 at 13:13\setcounter{page}{1}at all try to delete it – touhami Jul 14 '15 at 15:51