The standard sty file does not contain page for "List of Equations." By following the guide from https://latex.org/forum/viewtopic.php?t=428 I managed to generate the page by adding the following code into the *.sty file.
Code: Select all
%%%%% List of Equations
\renewcommand{\listequationsname}{\normalsize\normalfont\centering\vspace*{-0.5in} LIST OF EQUATIONS}
\newlistof{myequations}{equ}{\listequationsname}
\newcommand{\myequations}[1]{%
\addcontentsline{equ}{myequations}{\protect\numberline{\theequation}#1}\par}
\addcontentsline{toc}{section}{LIST OF EQUATIONS}
\listofmyequations
\fi
Code: Select all
\begin{equation}
\frac{D\rho}{Dt}+\rho(\bigtriangledown \cdot \overrightarrow{\rm V}) = 0
\label{eqn:conversation of mass}
\end{equation}
\myequations{conversation of mass}
Where $\rho$ is density, $V$ is velocity and, $\bigtriangledown$ is gradient operator.
\begin{equation}
\rho \frac{DV}{Dt} = -\bigtriangledown P + \rho g + \mu \bigtriangledown^{2}V
\label{eqn:conservation of momentum}
\end{equation}
\myequations{conservation of momentum}
1. How do I add the word Equation to each of the equation on the "List of Equations" page.
2. Why the page number is the same xiv for List of Figures and List of Equations?