I am trying to add a List of Equations to my dissertation that matches the style of the list of tables and list of figures. I am very close but am hung up on the last step. How can I reduce the vertical space between the "EQUATION .. PAGE" line and the line that shows the first equation?

I am using the tocloft package and the code to generate this table is shown below
\newcommand{\listequationsname}{LIST OF EQUATIONS \vskip 0.0in \noindent \textnormal{EQUATION} \hfill \textnormal{PAGE}}
\newlistof{myequations}{equ}{\listequationsname}
\newcommand{\myequations}[1]{%
\addcontentsline{equ}{myequations}{\protect\numberline{\theequation}#1}\par}
\setlength{\cftmyequationsnumwidth}{2.5em}% Width of equation number in List of Equations
\setlength{\cftmyequationsindent}{2em}
I think I am looking for another \setlength command but have scoured the tocloft documentation and cant seem to find what parameter to set.

\listof..." inserts extra space between entries for separate chapters. in situations i'm familiar with, this takes the form of\addvspace {10\p@ }in the.lo*file. while this shouldn't accumulate, there may be something else in that file that suppresses theaddcheck. compare your new.lo*file to the comparable.lof' to see what might be different. it also looks like you might be using\doublespacing`; you should probably turn that off until after all the lists are output. – barbara beeton Jul 15 '14 at 15:05