我正在撰写论文,在使用 minitoc 时遇到了以下问题。
我希望我的第一章(简介)不编号。但是当我使用
\chapter*{Introduction}
之后章节的所有迷你目录都发生了移动。更糟糕的是,它们被移到了违反直觉的方向:第 1 章的迷你目录只出现在第 2 章的开头。
这是代码。
\documentclass[12pt]{amsbook}
\usepackage[english]{babel}
\usepackage[utf8]{inputenc}
\usepackage{minitoc}
\setcounter{minitocdepth}{2}
\title{Thesis}
\begin{document}
\maketitle
\dominitoc[n]
\nomtcrule
\tableofcontents
\chapter*{Introduction}
Bla
\chapter{First chapter}
\minitoc
\section{Section 1}
\subsection{Subsection 1}
\subsection{Subsection 2}
\section{Section 2}
\chapter{Second chapter}
\minitoc
\section{Section 1}
\section{Section 2}
\end{document}
答案1
在未编号的章节后添加\adjustmtc
,参见手册第 37 页,第 1.3.4 节。
\documentclass[12pt]{amsbook}
\usepackage[english]{babel}
\usepackage[utf8]{inputenc}
\usepackage{minitoc}
\setcounter{minitocdepth}{2}
\title{Thesis}
\begin{document}
\maketitle
\dominitoc[n]
\nomtcrule
\tableofcontents
\chapter*{Introduction}
\adjustmtc
Bla
\chapter{First chapter}
\minitoc
\section{Section 1}
\subsection{Subsection 1}
\subsection{Subsection 2}
\section{Section 2}
\chapter{Second chapter}
\minitoc
\section{Section 1}
\section{Section 2}
\end{document}
答案2
设置\mtcaddchapter
在未编号的章节之后。