I've a document which contains a main file with this content:
\begin{document}
\include{title}
\dominitoc
\pagenumbering{roman}
\cleardoublepage
\chapter*{Acknowledgments}
TEXT\\
\tableofcontents
\addcontentsline{toc}{chapter}{List of Figures}
\listoffigures
\cleardoublepage
\addcontentsline{toc}{chapter}{List of Tables}
\listoftables
\cleardoublepage
\mainmatter
\include{chapter01}
...
\end{document}
In addition, each chapter like chapter01.tex begins with:
\chapter{Introduction}
\minitoc
SOME TEXT
So, each chapter should start with a minitoc. However, as soon
as I add the list of figures/tables and try to add them to the
main TOC with "\addcontentsline{toc}{chapter}{List of Figures}",
the lists occur in the main TOC but the minitoc is missing in
each chapter.
Any idea how this can be fixed such that the list of figures/tables in
indicated in the main TOC and each chapter has a minitoc?
Regards,
Tim
> I've a document which contains a main file with this content:
Where is the preamble?
> \begin{document}
> \include{title}
>
> \dominitoc
> \pagenumbering{roman}
> \cleardoublepage
>
> \chapter*{Acknowledgments}
> TEXT\\
>
> \tableofcontents
>
> \addcontentsline{toc}{chapter}{List of Figures}
> \listoffigures
Instead of \addcontentsline use the minitoc-macro:
\mtcaddchapter[\listfigurename]
> \cleardoublepage
>
> \addcontentsline{toc}{chapter}{List of Tables}
> \listoftables
> \cleardoublepage
>
> \mainmatter
> \include{chapter01}
> ...
> \end{document}
[...]
Ulrich