目录中项目的枚举

目录中项目的枚举

我想在目录中枚举手动添加的项目。此外,这些项目不是部分、子部分或章节,它们就像我在目录中添加的定义或示例,我想枚举它们。对于手动添加,我遵循回答。 但问题是,这些项目没有被列举出来。

是否可以进行列举,而无需在文档中将其添加为章节或类似内容?谢谢。

编辑这是 MWE,我正在使用:

\documentclass{book}  
\newtheorem{defn}{Definition} 
\newtheorem{Example}{Example} 
\begin{document} 
\tableofcontents 
\chapter{}
\section{section 1} 
\Example this is the example.
\addcontentsline{toc}{chapter}{Example}
\chapter{}
\section{section 1}
\defn this is a definition.
\addcontentsline{toc}{chapter}{Definition}
 \section{section 2}
\Example this is another example.
 \addcontentsline{toc}{section}{Example} 
\end{document} 

这是输出 输出

我想要例子目录中要枚举的内容,第二章和第二节下的示例也应相同。定义。

相关内容