Graphics, Figures & TablesArangement of the Table of Contents

Information and discussion about graphics, figures & tables in LaTeX documents.
Post Reply
muath
Posts: 30
Joined: Thu Jul 15, 2010 11:34 am

Arangement of the Table of Contents

Post by muath »

Hi!
I am trying to add the preface and the references to my contents by

Code: Select all

\addcontentsline{toc}{chapter}{Contents}
\tableofcontents
and

Code: Select all

\addcontentsline{toc}{chapter}{Bibliography}
\bibliography{refmeasure}
But, the problem is the page number of bibliography is less than the actual number by one, i.e. the bibliography on page 15 but it appears 14 in the contents,
i do no know where is the problem.
Thanks a lot.
Last edited by muath on Tue Dec 27, 2011 4:30 pm, edited 3 times in total.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
5gon12eder
Posts: 126
Joined: Sun Feb 13, 2011 8:36 pm

Arangement of the Table of Contents

Post by 5gon12eder »

LaTeX probably inserts a page break just between the \addcontentsline and the \bibliography. Does the page number get correct if you insert a \clearpage before the two commands?

Best
I'm using pdfTeX, Version 3.1415926-1.40.10 (TeX Live 2009/Debian).
muath
Posts: 30
Joined: Thu Jul 15, 2010 11:34 am

Re: Arangement of the Table of Contents

Post by muath »

Yes it does.
Thank you.
Post Reply