when using the "article" document class I can make a "List of Theorems" like so:
\documentclass{article}
%\documentclass{tufte-book}
\usepackage{thmtools}
\newtheorem{theorem}{Theorem}
\begin{document}
\listoftheorems
\begin{theorem}
A deep theorem.
\end{theorem}
\end{document}
However, if I switch to "tufte-book" document class, my list of theorems is no longer generated. How do I get it back? Thanks!