由此问题可以创建一个方程式列表(或其他对象)。但答案中建议的解决方案是使用tocloft
。因此,我想知道是否可以使用titletoc
包来做这种事情?
编辑
我尝试了这个 MWE:
\documentclass{book}
%\usepackage{tocloft}
\usepackage{titletoc}
\begin{document}
\startcontents[equ]
\newcommand{\listequationsname}{List of Equations}
\newcommand{\myequations}[1]{%
\addcontentsline{toc}{myequations}{\protect\numberline{\theequation}#1}\par
}
\tableofcontents
\printcontents[equ]{}{1}{List of equation}
\chapter{First chapter}
\section{First section}
\begin{equation}
C=2\pi R
\end{equation}
\begin{equation}
E=mc^2
\end{equation}
%\caption{caption of equation}
\myequations{Some equation}
\end{document}
不幸的是,结果不太吸引人。据我所知,由于我的命令,目录和方程式列表混合在一起\myequation
,而且数字是错误的。但是如何分开这两个列表呢?