+2 votes
in General IT Tips by (40.5k points)
I am using overleaf to write a latex document. I want to add the list of all algorithms present in the document to the table of content. Is there a quick way to do this?

1 Answer

+2 votes
by (348k points)
selected by
 
Best answer

Add "\listofalgorithms" after "\tableofcontents{}" to display the list of algorithms in the table of content.

If it does not work, add the following three lines after "\tableofcontents{}." It should work.

\newpage
\listofalgorithms
\addcontentsline{toc}{chapter}{List of Algorithms}

Related questions

+3 votes
1 answer
+1 vote
1 answer
+1 vote
1 answer
+1 vote
1 answer
+2 votes
1 answer

...