I do have a problem with my BachelorsThesis.
My Professor wants the TOC also mentioned in the TOC...
Contents
Abstract1.........i
Abstract2.........ii
Contents..........iii
Introduction.....1
and so on
I did it that way:
Code: Select all
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% ABSTRACTS
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\chapter*{Abstract1}
\addcontentsline{toc}{chapter}{Abstract1}
\pagenumbering{roman}
\setcounter{page}{1}
foo
\chapter*{Abstract2}
\addcontentsline{toc}{chapter}{Abstract2}
foo
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% CONTENTS
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\pagestyle{plain}
\tableofcontents
\addcontentsline{toc}{chapter}{Contents}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% MAIN
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\newpage
\newpage
\pagestyle{empty}
\null\newpage
%%%%%%%%%%%%%
%%% Introduction
%%%%%%%%%%%%%
\chapter{Introduction}
\pagenumbering{arabic}
\setcounter{page}{1}
my Problem is that the TOC is over 2 Pages.
So in the end my TOC looks like this:
Abstract1.........i
Abstract2.........ii
Contents..........iv (<- that should be iii)
Introduction.....1
if I insert
\setcounter{page}{3}
every page of the TOC is labelled iii
What can I do?
Thanks for your help