是否可以使用定理编号而不是章节编号来创建目录?

是否可以使用定理编号而不是章节编号来创建目录?

标题基本解释了这个问题。我的文档中没有任何章节。只有几个定理,所以我想创建一个目录,用定理编号和名称替换章节编号和名称(我在文档中命名了定理)。这样页码也会显示出来,目录中的名称就是定理的链接。有什么想法吗?

答案1

\listoftheorems添加thmtools包与hyperref超链接组合时可用的命令应该会给您所需的结果:

在此处输入图片描述

\documentclass{article}
\usepackage{amsthm}
\usepackage{thmtools} % for the listoftheorems command

\usepackage{hyperref} % for the hyperlinks in the list of theorems

\newtheorem{theorem}{Theorem}

\begin{document}
\listoftheorems

\begin{theorem}
  theorem contents
\end{theorem}
\end{document}

相关内容