I'm almost done with my master thesis, but I can't work this last issue out. Everything works fine, except for some wrong page pagenumbers in my Table of Contents. I'm using the following code:
Code: Select all
%-----------------------------------------------------------
\documentclass
[a4paper,10pt,twoside]
{report}
%-----------------------------------------------------------
\include{titel/TITEL}
\pagenumbering{roman}
\cleardoublepage
\include{voorwoord/VOORWOORD}
%-----------------------------------------------------------
\cleardoublepage
\include{samenvatting/SAMENVATTING}
%-----------------------------------------------------------
\cleardoublepage
\tableofcontents
\addcontentsline{toc}{chapter}{Inhoudsopgave}
\setcounter{tocdepth}{5}
%-----------------------------------------------------------
\cleardoublepage
\include{symbolen/SYMBOLEN}
%-----------------------------------------------------------
\cleardoublepage
\listoffigures
\addcontentsline{toc}{chapter}{Lijst van figuren}
%-----------------------------------------------------------
\cleardoublepage
\listoftables
\addcontentsline{toc}{chapter}{Lijst van tabellen}
%-----------------------------------------------------------
%Document
%-----------------------------------------------------------
\cleardoublepage
\pagenumbering{arabic}
\include{inleiding/INLEIDING}
Anybody got any suggestion?
Thanks a lot in advance!