How can I change the style of list of figure to make it equal to table of contents as shown in the picture below ? I'm using \documentclass{article} and creating list of figure with code \listoffigure .

How can I change the style of list of figure to make it equal to table of contents as shown in the picture below ? I'm using \documentclass{article} and creating list of figure with code \listoffigure .

The look of a lof like the toc can be achieved via the \cftfig.... macros from tocloft package. Basically this requires only two of those commands:
\cftfigindent -- the indentation of figure entries\cftfigfont -- the font specificationIf the lof should be splitted in sections, please have a look on this answer of mine:
List of tables (or figures) by section - LaTeX
\documentclass[12pt]{article}
\usepackage{caption}%
\usepackage{tocloft}
\renewcommand{\cftfigindent}{0pt}
\renewcommand{\cftfigfont}{\bfseries}
\begin{document}
\tableofcontents
\listoffigures
\section{First -- with no pagebreak}
\begin{figure}
\caption{Dummyfigure 1}
\end{figure}
\section{Second with pagebreak}%
\begin{figure}
\caption{Dummyfigure 2}
\end{figure}
\end{document}

\usepackage{tocloft} the size and type of font of my title have changed too. The name 'Sumário' and 'lista de figuras' are so big now. What can I do to solve this ?
– Freitas
Dec 27 '14 at 20:10
\renewcommand{\cftfigindent}{0pt} to config the list of figure, so how can I do the same thing to config the list of tables ? Thx for your help =)
– Freitas
Dec 27 '14 at 20:15
\renewcommand{\cfttabindent}{0pt}, see the corresponding section 2.3 of the tocloft manual please
–
Dec 27 '14 at 20:17
tocloftpackage should be a starting point. – Pier Paolo Dec 27 '14 at 19:13