内容(摘要)与使用 minitoc 的正确小节不匹配

内容(摘要)与使用 minitoc 的正确小节不匹配

基本上,使用米尼托克我在一张小表格中列出了每章内的所有章节内容在每一章的开头。请查看图片以了解更多。

然而,由于该作品(一本书)的规模很大,包含分为 3 个部分的 10 个部分,每个部分的索引并不与其适当的部分相对应,换句话说,都是杂乱无章的,也不对应于各自的摘要,例如在所呈现的图像中,这个摘要对应于第 5 部分的内容,而不是第 4 部分。

基本上我改编了这个模板原件!。

使用以下结构:存档(已更改) -teipel-论文-en

main.tex(已更改):

 \documentclass[classic,hyperref,histinit,frontispiece,minitoc]{teipel-thesis-en}
 \UniversityName{X}
 \SchoolName{X}
 \UniversityLocation{X}
 \ThesisType{X}
 \title{\\XXXX:\\}
 \authorName{XXXX} 
 \supervisor{X}
 \thesisPlaceDate{May, 2018}
 \secondExaminer{X B}
 \secondExaminerTitle{X}
 \chaptercolor{gray!100!gray}
 \appendixcolor{gray!100!gray}
 \hyperlinkcolor{black}
 \titlecolor{black}
 \titlebackgroundcolor{gray!100!gray}  
 \coverpageimage{0.2}{logo/X.png}
 \UniversityLogoPath{logo/X.png}
 \UniversityBWLogoPath{logo/X.png}
 \LogoScaleFactor{1}
 \setFrontispiece[0.8]{chap10/fig10/X.png}{X}
 \AtBeginEnvironment{subappendices}{%
 \clearpage
 \section*{Appendices}
 \addcontentsline{toc}{section}{Appendices}
 \counterwithin{figure}{section}
 \counterwithin{table}{section}
 }
 \begin{document}
 \maketitle
 \beginfrontmatter
 \thesisDedication{X}
 \include{acknowledgements}
 \blank{}
 \include{abstract}
 \tableofcontents
 \listoffigures
 \listoftables
 \listofalgorithms
 \beginmainmatter
 \blank{}
 \part{A}
 \blank{}
 \include{chap1/chap1}
 \blank{}
 \include{chap2/chap2}
 \blank{}
 \part{B}
 \blank{}
 \include{selectedpapers}
 \blank{}                
 \include{chap3/chap3}
 \blank{}
 \include{chap4/chap4}
 \blank{}
   \include{chap5/chap5}
 \blank{}
  \include{chap6/chap6}
 \blank{}
   \include{chap7/chap7}
 \blank{}
\include{chap8/chap8}
 \blank{}
  \include{chap9/chap9}
 \blank{}
 \part{C}
 \blank{}
 \include{chap10/chap10}
 \blank{}
 \appendices
 \include{appA}
 \blank{}
 \bibliography{IEEEabrv,references}
 \includeabbreviations{Acronyms}
 \printindices
 \end{document}

在每个章节中我插入了例如 chap1.tex(已更改)在此处输入图片描述

\chapter{Introduction} \label{chap1_introduction}
\minitoc
\hfill \break
\newpage
\noindent
\InitialCharacter{B}la bla bla...
\section{Objectives} \label{chap1_objectives}
Bla, Bla, Bla...

相关内容