将方程列表居中

将方程列表居中

你好,我目前正在写论文,我需要每个标题都居中,但是,我制作的方程式标题列表的方式并不居中,正如你在图片中看到的那样在此处输入图片描述

我用来生成此列表的代码是:

\newcommand{\listequationsname}{\normalsize List of Equations}
\newlistof{myequations}{equ}{\listequationsname}
\newcommand{\myequations}[1]{%
\addcontentsline{equ}{myequations}{\protect\numberline{\theequation}#1}\par}

如果我尝试使用它将其居中,\listequationsname则会将其在目录中的位置移开。任何帮助都将不胜感激。

答案1

我找到了解决方案,我所要做的就是

\newcommand{\listequationsname}{\begin{center}\normalsize List of Equations\end{center}}
\newlistof{myequations}{equ}{\listequationsname}
\newcommand{\myequations}[1]{%
\addcontentsline{equ}{myequations}{\protect\numberline{\theequation}#1}\par}

进而

将其添加到目录中:

\addcontentsline{toc}{chapter}{List of Equations}

相关内容