How to change the caption of the \listoffigures command?
\listoffigures[list of pictures] #something like that doesn't work
How to change the caption of the \listoffigures command?
\listoffigures[list of pictures] #something like that doesn't work
According to this site it can be done by using \addto\captions<language>{\renewcommand\listfigurename{<Your title>}} where <language> has to be replaced with the language loaded via babel for your document (for english that would be \addto\captionsenglish).
Alternatively you can issue a \renewcommand*\listfigurename{<Your title>} after \begin{document} but before \listoffigures.