I'm preparing my thesis report. My table of contents starts from roman page number (iii) and has a total of 3 pages. But unfortunately the last page of toc shows page number (iii) again. Same is the case for the lof (3 pages). I am using \documentclass[a4paper,12pt]{report}. I'm a beginner in LaTeX, so please help me.
\documentclass[a4paper,12pt]{report}
\setcounter{tocdepth}{3}
\addcontentsline{toc}{chapter}{Contents}
\tableofcontents
\pagenumbering{roman}\setcounter{page}{3}
\clearpage
\addcontentsline{toc}{chapter}{Summary}
\pagenumbering{roman}
\setcounter{page}{6}
\chapter*{Summary}
\clearpage
\listoffigures
\pagestyle{plain}
\pagenumbering{roman}
\setcounter{page}{7}
\addcontentsline{toc}{chapter}{\listfigurename}
\clearpage
\listoftables
\pagenumbering{roman}
\setcounter{page}{10}
\addcontentsline{toc}{chapter}{\listtablename}
\clearpage

\pagenumberingand\setcounterare quite possibly missleading and disturbing you and your document. LaTeX is very very capable of counting pages, no need to number them yourself. I would kick out all of this lines. Please also have a look at How to use pagenumbering in the document? – Johannes_B Jul 27 '15 at 11:01\tableofcontents. once the numbering starts, you really shouldn't have to reset it until you change to arabic for the body of the document. and issuing\addcontentslinefor the summary before setting the page number will almost certainly result in the wrong page number in the toc. it's almost always better to specify\addcontentslineimmediately after the\chapterline for that element. – barbara beeton Jul 27 '15 at 11:06\documentclassand concluding with\end{document}) that showcases your error? even if you alredy got the solution. – Ruben Jul 27 '15 at 11:25\usepackage{tocbibind}-- this will yield many of the\addcontentslinecode above as unnecessary – Jul 28 '15 at 06:14