Search found 4 matches

by abuhawa
Tue Apr 06, 2021 5:11 pm
Forum: General
Topic: Adding "List of Equations" into an existing latex style sty
Replies: 4
Views: 4858

Adding "List of Equations" into an existing latex style sty

I have found the solution.Add the following
\setlength{\cftmyequationsnumwidth}{2.5em}% Width of equation number in List of Equations

The overall code in the style (*.sty) file:

%%%%% List of Equations
\iffigurespage
\newcommand{\listequationsname}{\normalsize\normalfont\centering\vspace*{-0 ...
by abuhawa
Tue Apr 06, 2021 4:05 pm
Forum: General
Topic: Adding "List of Equations" into an existing latex style sty
Replies: 4
Views: 4858

Adding "List of Equations" into an existing latex style sty

With your approach, the indentation of this list no longer matches the indentation of the other lists if the text entered needs more than one line.

The command \newlistof creates, among other things, the command \cftXpresnum (X serves as a placeholder), which can prepend the word to any list entry ...
by abuhawa
Mon Feb 15, 2021 4:49 pm
Forum: General
Topic: Adding "List of Equations" into an existing latex style sty
Replies: 4
Views: 4858

Adding "List of Equations" into an existing latex style sty

I finally nailed it, miss several line of codes to make into a new page.

%%%%% List of Equations
\iffigurespage
\newcommand{\listequationsname}{\normalsize\normalfont\centering\vspace*{-0.5in} LIST OF EQUATIONS}
\newlistof{myequations}{equ}{\listequationsname}
\newcommand{\myequations}[1 ...
by abuhawa
Mon Feb 15, 2021 4:00 am
Forum: General
Topic: Adding "List of Equations" into an existing latex style sty
Replies: 4
Views: 4858

Adding "List of Equations" into an existing latex style sty

I am catching up with Latex, but this one really annoyed me. I was provided with the standard *.sty file and the main.tex which I attached here.

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 ...