LaTex - adding list of tables to table of contents

 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

I never had this requirement, but the solution seems to work even if it's not instantly obvious how to solve it. I like the step by step explanation of the solution to a concrete problem.
Klaus Nigsch - Sun, 11/25/2018 - 12:12 :::
Thank you for sharing! This seems like a common LaTeX problem while writing scientific formats... Will definitely come back to it!
Daria Piacun - Mon, 12/10/2018 - 09:26 :::
Thank you for sharing, your admin had been very useful for me.
Carole Sebah - Mon, 12/10/2018 - 14:25 :::
Thanks, saved me a lot of time!
Kresimir Kasal - Mon, 12/16/2019 - 04:33 :::
No answers yet.