Lists of tables and figures
A List of the tables and figures keep the information organized and provide easy access to a specific element. This article explains you to create a list of figures, a list of tables and I to change the default title in both of M. Introduction.
Below is a really simple example:0000 0
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{graphicx}
\graphicspath{{figures/} }
\usepackage{array}
\begin{document}
\thispagestyle{empty}
\listoffigures
\listoftables
\newpage
\pagenumbering{arabic}
Lorem ipsum dolor sit Amet, consectetuer adipiscing
elit. Etiam lobortisfacilisis
... \end{document}
The commands \listoffigures and \listoftables are self explanatory, the one generates the list of figures and the SE Cond one the list of tables. In this example there are two more relevant commands: \thispagestyle{empty} removes the page numbering. \pagenumbering{arabic} re-start the page numbering with Arabic style.
Open An example in Sharelatex changing the names
The default titles, "List of Tables" and "List of figures", can is changed to any other text
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{graphicx}
\usepackage{array}
\ graphicspath{{figures/}}
\renewcommand{\listfigurename}{list of plots}
\renewcommand{\ Listtablename}{tables}
\begin{document}
\thispagestyle{empty}
\listoffigures
\listoftables
\clearpage
\pagenumbering{arabic}
Lorem ipsum dolor Sit amet, consectetuer adipiscing elit. Etiam lobortisfacilisis
... \end{document}
The commands that re-write the titles are: \renewcommand{\listfigurename}{list of plots} to write "List of plots" Instea D of "List of Figures". \renewcommand{\listtablename}{tables} would write "tables" instead of "List of Tables".
If you have the Babel package in your document and the previous commands, put it inside the braces O F \addto\captionsenglish{}. Instead of 中文版 in \captionenglish write the name of the the language your set in Babel.
Note:your document may need to is compiled twice for the lists to be properly generated
Open An example in Sharelatex
From:https://www.sharelatex.com/learn/lists_of_tables_and_figures