我试图弄清楚如何在内容部分中对齐方程的数字。
我正在使用此代码添加“方程式部分列表”:
%For list of equations
\newcommand{\listequationsname}{\Large List of Equations}
\newlistof{myequations}{equ}{\listequationsname}
\newcommand{\myequations}[1]{%
\addcontentsline{equ}{myequations}{\protect\numberline{\theequation}#1}\par}
\setlength{\cftmyequationsnumwidth}{2.5em}
但与前面的部分不一致:
我怎样才能改变这一点?
非常感谢,
问候,
-U
答案1
问题出在新命令上,要解决它,只需应用一个新的命令参数,如\hspace:
\newcommand{\listequationsname}{\Large List of Equations}
\newlistof{myequations}{equ}{\listequationsname}
\newcommand{\myequations}[1]{%
\addcontentsline{equ}{myequations}{\hspace*{1.5em}\protect\numberline{\theequation}#1}\par}
\setlength{\cftmyequationsnumwidth}{2.5em}
这对我来说可以 :