I am trying to generate a list of all equations in a document. I have searched and it seemed a good solution would be to use the thmtools, which can generate a list of all theorems(if im correct). What I am looking for is (in the following example, at the chapter CheatSheet) a list with the contents of all equate-theorems, as such (with LaTeX formatting):
$Some_{Lowtext}$ (1)
$Some^{Hightext}$ (2)
Minimal (not) Working Example:
\documentclass[a4paper,12pt]{report}
\usepackage{theorem}
\newtheorem{equate}{}
\usepackage{thmtools}
\renewcommand{\listtheoremname}{List of Equations}
\begin{document}
\tableofcontents
\newpage
\chapter{Name of Chapter}
\section{Name of Section}
\subsection{Name of SubSection}
sometext
\begin{equate}
$Some_{Lowtext}$
\end{equate}
Some other Text
\begin{equate}
$Some^{Hightext}$
\end{equate}
And some more
\chapter{CheatSheet}
\listoftheorems
\end{document}
This gives me the following errors (line 24 is the line after \listoftheorems):
test.tex:24: Missing \endcsname inserted. []
test.tex:24: Too many }'s. []
I am wondering if this is the way to produce such a list and how I can solve my error.

theoremandthmtoolspackages seems to be a bad idea, as they are likely incompatible. Those two packages use different macros to define theorems:theoremuses\newtheoremwhereasthmtoolsprovides\declaretheorem. If you only loadthmtools(nottheorem) and use\declaretheoremto define your theorems,\listoftheoremswon't generate any error. – jub0bs Dec 31 '13 at 15:02theoremandthmtools.\listoftheoremsdoes however not output the expected output, but only acts as a table of contents for equations. It seems I cannot usethmtoolsfor that, am I right? – Snicksie Dec 31 '13 at 17:43