PDA

Archiv verlassen und diese Seite im Standarddesign anzeigen : pagenumber for the List of Figures



Yang
19-05-2007, 23:25
hallo there,

I just faced a problem, the page numbering of the page layout of the 'list of figures' and 'list of tables' can not be included in the contents.

I just simply used the commands:

\tableofcontents
\listoffigures
\listoftables

how to solve such proble??

thanks for any help

Yang

localghost
20-05-2007, 00:04
Unfortunately you don't write about the class you are using. So i assume a class with chapters. You have to add the lists manually to the TOC.

\tableofcontents\newpage
\listoffigures\newpage
\addcontentsline{toc}{chapter}{List of Figures}
\listoftables\newpage
\addcontentsline{toc}{chapter}{List of Tables}

The \newpage command is necessary to get the pagenumbers right. When using a class without chapters (like article), simply change the above marked chapter to section. Using a documentclass from the KOMA Script (http://tug.ctan.org/cgi-bin/ctanPackageInformation.py?id=koma-script) bundle makes it easier to add these lists to the TOC.