The “List of figures”-table must appear also in the table of contents, and the page numbering should be with roman letters.
Solution:
"List of Figures" must be a separate section or chapter for it to appear in table of contents.
1. Set the page numbering to roman i.e. \pagenumbering{roman}
2. Create new section i.e.: \section*{}
3. Add manually the "List of Figures" to table of contents i.e.: \addcontentsline{toc}{section}{List of Figures}
4. Create the table for list of figures i.e.: \listoffigures
5. List of tables should appear in new page alone, for this insert: \pagebreak
6. The numbering must be set to normal numbers, Arabic numbers, i.e.: \pagenumbering{arabic}
7. At last set the counter for page numbering \setcounter{page}{1}
Comments