TOC의 페이지 번호가 잘못되었습니다.

TOC의 페이지 번호가 잘못되었습니다.

아래 MWE의 경우:

\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}

제목 페이지가 I 대신 II에서 시작하는 이유는 무엇입니까? 부품을 추가하기 전까지는 괜찮았습니다 %make an empty page. 어떤 아이디어가 있나요?

답변1

\clearpage다음과 같이 넣습니다 .

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

관련 정보