I have a list of figure where figures are grouped by chapter (see image below).
I have already tried numbers of solutions but none of them worked. Here's a MWE:
\documentclass{report}
\usepackage[german]{babel}
\usepackage{graphicx} % Required for inserting images
\begin{document}
\renewcommand{\listfigurename}{Abbildungsverzeichnis}
\listoffigures
\chapter{chapter1}
\begin{figure}
\centering
\includegraphics[width=3cm]{Figures/fig1.png}
\caption{Caption 1}
\end{figure}
\begin{figure}
\centering
\includegraphics[width=3cm]{Figures/fig1.png}
\caption{Caption 2}
\end{figure}
\chapter{chapter1}
\begin{figure}
\centering
\includegraphics[width=3cm]{Figures/fig1.png}
\caption{Caption 1}
\end{figure}
\begin{figure}
\centering
\includegraphics[width=3cm]{Figures/fig1.png}
\caption{Caption 2}
\end{figure}
\chapter{chapter1}
\begin{figure}
\centering
\includegraphics[width=3cm]{Figures/fig1.png}
\caption{Caption 1}
\end{figure}
\begin{figure}
\centering
\includegraphics[width=3cm]{Figures/fig1.png}
\caption{Caption 2}
\end{figure}
\end{document}
Thanks for your help

