I used the amsthm-package to define definitions, theorems and lemmas. Besides, I defined examples as follows:
\newtheoremstyle{examplestyle}
{2pt}
{2pt}
{}
{}
{\bfseries}
{:}
{3pt}
{}
\theoremstyle{examplestyle}
\newtheorem{example}{Example}[chapter]
Now I would like to make a list of examples (similar to \listoffigures). I tried to use the ntheorem-package, but that is not compatible with amsthm. Does anyone know if it is possible to create a list of examples without having to change the things I defined so far and how to do so?
Thanks!
\documentclass{...}and ending with\end{document}– Oct 13 '14 at 12:16thmtools(compatible withamsthm) provides the desired facility. see Generating lists of custom environment. – barbara beeton Oct 13 '14 at 12:20