I'm looking to add a note after my List of Figures heading, but before the actual list. The desired output would be:
List of Figures
A short note about image credits.
2.1 Figure
3.4 Figure
3.5 Figure
...
MWE:
\documentclass{article}
\usepackage{graphicx}
\begin{document}
\listoffigures
\begin{figure}[htb]
\centering
\includegraphics[width=3cm]{example-image-golden}
\caption{\label{mylabel}
A lovely box.}
\end{figure}
\end{document}
tocloftdoes seem to provide hooks to add this sort of information – daleif Mar 26 '21 at 14:18