General ⇒ Adding "List of Algorithms" to Table of Contents
-
- Posts: 8
- Joined: Wed Nov 01, 2017 4:02 pm
Adding "List of Algorithms" to Table of Contents
I'm using the "Master/Doctoral Thesis" template, and I need "List of Algorithms" to be appeared in the Table of Contents.
Would you please let me know that how I can do it?
Regards,
Ben
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
- Stefan Kottwitz
- Site Admin
- Posts: 10324
- Joined: Mon Mar 10, 2008 9:44 pm
Adding "List of Algorithms" to Table of Contents
you can use the
\addcontentsline
command:Code: Select all
...
\clearpage
\addcontentsline{toc}{chapter}{List of Algorithms}
\listofalgorithms
...
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Adding "List of Algorithms" to Table of Contents
\addchaptertocentry{List of Algos}
.