I am struggling to use minitoc
when I have a starred chapter before the TOC (that I want to appear in the TOC). In the following MWE, the minitoc of Chapter 1 appears under Chapter 2, despite I used \addstarredchapter
to add the starred chapter:
\documentclass{book}\usepackage{minitoc}\begin{document}\chapter*{Phantom}\addstarredchapter{Phantom}\dominitoc\tableofcontents\listoffigures\listoftables\chapter{Foo}\minitoc\section{FooFoo}\section{FooBar}\chapter{Bar}\minitoc\section{BarBar}\section{BarFoo}\end{document}
Does anyone see what I am doing wrong?