当我在目录之前有一个带星号的章节(我希望它出现在目录中)时,我很难使用它minitoc
。在下面的 MWE 中,第 1 章的 minitoc 出现在第 2 章下,尽管我曾经\addstarredchapter
添加过带星号的章节:
\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}
有人看到我做错什么了吗?
答案1
\dominitoc
在任何切片命令之前使用:
\documentclass{book}
\usepackage{minitoc}
\begin{document}
\dominitoc
\chapter*{Phantom}
\addstarredchapter{Phantom}
\tableofcontents
\listoffigures
\listoftables
\chapter{Foo}
\minitoc
\section{FooFoo}
\section{FooBar}
\chapter{Bar}
\minitoc
\section{BarBar}
\section{BarFoo}
\end{document}