0

I want to include the figure list and table list in the index of my article, similarly with others numbered sections. But, when I use the code below nothing happened. There are a way to do it?

    \begin{document}

%-------------index-------------------- \newpage \tableofcontents \thispagestyle{empty}

\break

%---------figure list------ \listoffigures

\break

%---------table list------ \listoftables

\break

\end{document}

1 Answers1

0

The long way would be use \addcontentsline{toc}{chapter}{Listof...} at the appropriate place.

If you use KOMA, you're lucky, because you can just do: \documentclass[listof=totoc]{KOMA-Class}

Cube707
  • 404