在目錄中添加前言後,Minitoc 不起作用

在目錄中添加前言後,Minitoc 不起作用

對於我的論文,我將分別處理幾個章節,並將這些章節包含在我的主.tex文件中。我已經用 定義了我的前言\chapter*{Preface}。為了將前言加入目錄中,我使用了\addcontentsline.對於我使用的標題\chaptermark

\chapter*{Preface}
\addcontentsline{toc}{chapter}{Preface}
\chaptermark{Preface}

這非常有效,直到我意識到其他章節的迷你目錄在我編譯後不再出現。我編譯了好幾次都沒有改變。當我的序言在目錄中具有正確的標題時,我該怎麼做才能使它們出現。

\begin{document}
\setcounter{secnumdepth}{4}
\setcounter{tocdepth}{3}

\dominitoc

\pagenumbering{roman}

\cleardoublepage

\parskip=2ex

\frontmatter

\begin{titlepage}
  \maketitle
\end{titlepage}


\chapter{Dedication/dedication}
\chapter{Declaration/declaration}
\chapter{Acknowledgement/acknowledgement}
\chapter{Abstract/abstract}


\tableofcontents
\printnomenclature

\mainmatter
\chapter{Preface/preface}
\adjustmtc[0]
\chapter{Chapter1/chapter1}
\chapter{Chapter2/chapter2}
\backmatter
\listoffigures

\listoftables
\end{document} 

如果有人在這個問題上提供幫助,我會很高興。

編輯:在這裡我簡化了我的程式碼以製作一個工作範例。老實說,我不知道minitoc在課堂上是否有效,report因為當我評論前言部分minitoc在任何情況下都不起作用。 (通常情況下,我確實使用一個類別來進行論文,minitoc如果我不在目錄中添加前言,那麼它也可以工作。)

\documentclass[a4paper]{report}
\usepackage{minitoc}
\begin{document}

\dominitoc
\chapter*{Dedication}
\chapter*{Declaration}
\chapter*{Acknowledgement}
\chapter*{Abstract}

\tableofcontents

\chapter*{Preface}
\addcontentsline{toc}{chapter}{Preface}
\chaptermark{Preface}
\adjustmtc[0]
\chapter{Chapter 1}
We will have two sections here.
\section{AA}
Here, I have my first section.
\section{BB}
This is my second section.
\chapter{Chapter2}
\section{CC}
This is the CC section.
\chapter{Chapter 3}
\section{DD}
This is the DD section.
\listoffigures

\listoftables
\end{document} 

答案1

帶有星號的結構單元的明確\addcontentsline語句會混淆計數和幾個 minitoc 輔助檔案。這就是\addstarredchapter存在的原因:

\documentclass[a4paper]{report}
\usepackage{minitoc}
\begin{document}

\dominitoc
\chapter*{Dedication}
\chapter*{Declaration}
\chapter*{Acknowledgement}
\chapter*{Abstract}

\tableofcontents

\chapter*{Preface}
\addstarredchapter{Preface}
\chaptermark{Preface}
\chapter{Chapter 1}
\minitoc
We will have two sections here.
\section{AA}
Here, I have my first section.
\section{BB}
This is my second section.
\chapter{Chapter2}
\minitoc
\section{CC}
This is the CC section.
\chapter{Chapter 3}
\minitoc
\section{DD}
This is the DD section.
\listoffigures

\listoftables
\end{document} 

相關內容