Theses, Books, Title pages ⇒ Table of contents per chapter
-
templateuser
- Posts: 679
- Joined: Tue Mar 03, 2015 4:01 pm
Table of contents per chapter
how can I insert the table of contents for each chapter for this template
thank you
Messi007
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Re: Table of contents per chapter
It looks like you should use the minitoc package to do this. Have a look here for how to do it: http://www.tex.ac.uk/cgi-bin/texfaq2html?label=minitoc
Cheers,
Vel
-
templateuser
- Posts: 679
- Joined: Tue Mar 03, 2015 4:01 pm
Re: Table of contents per chapter
Messi007
-
templateuser
- Posts: 679
- Joined: Tue Mar 03, 2015 4:01 pm
Re: Table of contents per chapter
Messi007
Re: Table of contents per chapter
This page here answers this question much better than I can: http://tex.stackexchange.com/questions/ ... e-pdflatex
That said, in order to put a mini table of contents at the end of each chapter using this template, do the following:
1) Add \usepackage{minitoc} to the preamble
2) Add \dominitoc after \begin{document}
3) Add \setcounter{mtc}{9} before \input{Chapters/Chapter1}
4) Add \minitoc to the end of Chapter1.tex
You'll now see a mini table of contents just for Chapter 1 at the very end of chapter 1. You can add \minitoc to the end of the other chapters as well to print their table of contents. You will need to put \setcounter{mtc}{X} before every \input{Chapter/ChapterX} and increment the X by one so after Chapter 1 you would use \setcounter{mtc}{10}.
Cheers,
Vel
-
templateuser
- Posts: 679
- Joined: Tue Mar 03, 2015 4:01 pm
Re: Table of contents per chapter
Messi007