Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

List of equations #2

Open
szsctt opened this issue Aug 13, 2018 · 0 comments
Open

List of equations #2

szsctt opened this issue Aug 13, 2018 · 0 comments

Comments

@szsctt
Copy link

szsctt commented Aug 13, 2018

I'm trying to insert a list of equations as well all the other lists in the front matter.

I found a solution on the web (https://latex.org/forum/viewtopic.php?f=5&t=428), and inserting the following lines into ociamthesis.cls sort of gets the job done:
\usepackage{tocloft}

\newcommand{\listequationsname}{List of Equations}
\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

with equations inserted as
\begin{equation}
titre = n \times d \times 10
\end{equation}
\label{eq:titre}
\myequations{Calculation of virus titre}

and

%List of equations
\listofmyequations
\mtcaddchapter

inserted in Oxford_thesis.tex after all the other lists.

This works in the sense that it inserts a table of equations, however it has the unintended consequences that the tables of figures and tables are now no longer on seperate pages. The list of equations is also not listed in the table of contents.

Any ideas about a better way to insert a table of equations?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant