Tufte-LaTeX 破坏了我的定理列表

Tufte-LaTeX 破坏了我的定理列表

当使用“文章”文档类时,我可以像这样制作“定理列表”:

\documentclass{article}
%\documentclass{tufte-book}
\usepackage{thmtools}
\newtheorem{theorem}{Theorem}

\begin{document}
\listoftheorems

\begin{theorem}
A deep theorem.
\end{theorem}

\end{document}

但是,如果我切换到“tufte-book”文档类,我的定理列表将不再生成。我该如何找回它?谢谢!

答案1

这是个tocdepth问题。根据第 67-68 行tufte-book.cls

% Only show the chapter titles in the table of contents
\setcounter{tocdepth}{0}

这也影响\listoftheorems

你可以通过以下方式来反击(双关语!)

\setcounter{tocdepth}{1}

如下面 MWE 所示

%\documentclass{article}
\documentclass{tufte-book}
\usepackage{thmtools}
\newtheorem{theorem}{Theorem}

\begin{document}
\setcounter{tocdepth}{1}
\listoftheorems

\begin{theorem}
A deep theorem.
\end{theorem}

\end{document}

您可以tocdepth在此处阅读更多内容,例如:http://en.wikibooks.org/wiki/LaTeX/Document_Structure

相关内容