放错位置的 minitoc

放错位置的 minitoc

当我在目录之前有一个带星号的章节(我希望它出现在目录中)时,我很难使用它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}

在此处输入图片描述

相关内容