Numeración de páginas incorrecta para TOC

Numeración de páginas incorrecta para TOC

Para el MWE a continuación:

\title{TITLE} 

\documentclass[a4paper,11pt,twoside]{report}
\usepackage[left=2.5cm,right=2cm,top=2cm,bottom=2cm]{geometry}
\usepackage[T1]{fontenc}
\usepackage{fancyhdr}
\usepackage{setspace}
\begin{document}

%%%%%%%%%%%%%%%
% TITLE PAGE %%%%%
%%%%%%%%%%%%%%%
\maketitle %Title page

%make an empty page
\newpage
\thispagestyle{empty}
\mbox{}
%%%%%%%%%%%%%%%

\begin{abstract}
\noindent
abstract
\end{abstract}

\newpage

\thispagestyle{empty} %Empty page

\begin{center}
\vspace*{10cm}
Some acknowledgment
\end{center}

\vspace*{3.5cm} %space so that page stays empty

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% For header and footers %%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\pagestyle{fancyplain}
% Clear the default
\fancyhead{}
\fancyfoot{}
\renewcommand{\footrulewidth}{0.4pt}
\fancyfoot[CO,CE]{\thepage}

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% CONTENTS PAGE 
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\renewcommand*\contentsname{Table of Contents}
\setcounter{page}{1}
\begin{spacing}{1.0}
\pagenumbering{Roman}
\tableofcontents
\end{spacing}
\newpage

\end{document}

¿Por qué la página de título comienza desde II en lugar de I? Estaba bien hasta que agregué la pieza %make an empty page. Algunas ideas ?

Respuesta1

Poner \clearpagecomo en

\renewcommand*\contentsname{Table of Contents}
\clearpage  %%% here
\setcounter{page}{1}

información relacionada