Department of Engineering

IT Services

minitoc

LaTeX's minitoc package seems rather sensitive to other packages, so it might not work in multi-package situations. Also you need to generate a full table of contents (which you can make invisible by using \faketableofcontents rather than \tableofcontents). And I think \dominitoc needs to be before \faketableofcontents. Test your configuration by using this sample file - as usual, you'll need to process it twice to get the tables of contents.

\documentclass{book}
\usepackage{minitoc}
\begin{document}
\dominitoc
\faketableofcontents
\chapter{one}
\minitoc
\section{A section}
\subsection{A subsection}
\section{Another section}
\chapter{two}
\minitoc
\section{Yet Another section}
\end{document}