为了对报告中的短文本进行编号,我使用了:
\newtheorem{SampleEnv}{}[section]
如何生成所有编号文本的列表?
答案1
一个几乎普遍的解决方案是使用thmtools
包裹。它提供了一个\listoftheorems
命令(编译你的文档两次以获取更新)。
\documentclass{article}
\usepackage{thmtools}
\newtheorem{SampleEnv}{}[section]
\begin{document}
\listoftheorems
\section{First section}
Main text:
\begin{SampleEnv}
Phrase One.
\end{SampleEnv}
Some text in between.
\begin{SampleEnv}
Phrase Two.
\end{SampleEnv}
\end{document}
thmtools
amsthm
也可以与或结合使用ntheorem
。该ntheorm
软件包已经提供了此类功能。
如果你想要为该列表指定一个不同的标题,你可以使用类似
\renewcommand{\listtheoremname}{List of highlighted phrases}