Possible Duplicate:
List sections of chapter at beginning of that chapter
I'm wondering whether its possible to have each chapter of a thesis with its own contents page? I tried it using the next few lines, and everything works...except that the next main page is affected.
\pagestyle{empty}
\maketitle
\thispagestyle{empty}
\pagestyle{empty}
The idea is to have something like this (just an additional page, not to affect the main chapter page). However, the next page shows continuation of 1.3, doing '1.4 Introduction'
--------------------
Chapter One
1.1 Introduction
1.2 Overview
1.3 Aims of thesis
--------------------
Any ideas to break the link between the two pages?
\documentclass{book}\usepackage{titletoc}\usepackage{minitoc}\setcounter{minitocdepth}{1}\setcounter{minitocdepth}{3}\begin{document}\dominitoc% Initialization\tableofcontents\chapter{bla}\minitoc% Creating an actual minitoc\section{blubb}\section{foo}
– BrettHarry Jul 13 '11 at 07:37\end{document}