I use the caption and subcaption package as shown in the example below:
\documentclass{article}
\usepackage{caption}
\usepackage{subcaption}
\captionsetup[subfigure]{list=true}
\begin{document}
\listoffigures
\begin{figure}[!ht]
\centering
\begin{subfigure}{.5\linewidth}
\centering
A
\caption{test subfigure}
\end{subfigure}%
\begin{subfigure}{.5\linewidth}
\centering
B
\caption{another test subfigure}
\end{subfigure}
\caption{A figure with subfigures}
\end{figure}
\end{document}
How can i remove the page numbers of the subfigures from the list of figures? (subfigures are in my document always on the same page as the "main figure")
PS: tocloft seems not to be compatible with the caption/subcaption packages
