我已经使用此代码在我的文档中创建了一个方程式列表报告
\begin{document}
% config for the list of equations
\newcommand{\listequationsname}{Liste des Equations}
\newlistof{myequations}{equ}{\listequationsname}
\newcommand{\myequations}[1]{%
\addcontentsline{equ}{myequations}{\protect\numberline{\theequation}#1}\par}
\renewcommand{\cftpartleader}{\cftdotfill{\cftdotsep}}
\renewcommand{\cftchapleader}{\cftdotfill{\cftdotsep}}
\tableofcontents
\clearpage
\listoffigures
\clearpage
\listoftables
\clearpage
\listofalgorithms
\clearpage
\listofmyequations
答案1
我真的不知道原帖者是如何使用它的,因为原帖者没有提供最低限度的工作示例。但是,很明显正在tocloft
使用。在这种情况下,关键是类似的东西\setlength{\cftmyequationsnumwidth}{1in}
。
\documentclass{article}
\usepackage{tocloft}
% config for the list of equations
\newcommand{\listequationsname}{Liste des Equations}
\newlistof{myequations}{equ}{\listequationsname}
\newcommand{\myequations}[1]{%
\addcontentsline{equ}{myequations}{\protect\numberline{\theequation}#1}\par}
\setlength{\cftmyequationsnumwidth}{1in}
\begin{document}
\listofmyequations
\begin{equation}
y = mx + b
\end{equation}
\myequations{The linear equation}
\begin{equation}
E = mc^2
\end{equation}
\myequations{The energy equation}
\end{document}