I'm working with the masters-doctoral-thesis template.
I would like to add the list of algorithms right after the list of tables.
I also need it to be in french "liste des algorithmes".
First i added the following line just after the list of tables:
Code: Select all
\lhead{\emph{Liste des Algorithmes}}
\listofalgorithms
Thus i tried to add those following line in the thesis.cls file:
Code: Select all
\renewcommand\listofalgorithms{
\btypeout{Liste des Algorithmes}
\addtotoc{Liste des Algorithmes}
\begin{spacing}{1}{
\setlength{\parskip}{1pt}
\if@twocolumn
\@restonecoltrue\onecolumn
\else
\@restonecolfalse
\fi
\chapter*{\listalgorithmname
\@mkboth{
\MakeUppercase\listalgorithmname}{\MakeUppercase\listalgorithmname}}
\@starttoc{lot}
\if@restonecol\twocolumn\fi
\cleardoublepage
}\end{spacing}
}
Do you know what I did wrong ?