我正在尝试使用米尼托克包将内容添加到每章的开头。它似乎不起作用,我在文档中看到,使用带星号的章节或
\addcontentsline{toc}{chapter}...
但无论我尝试添加什么,它似乎都不起作用...有什么建议吗?也许我放错了\多米尼托克或者这里遗漏了什么
\documentclass[a4paper,12pt,oneside]{report}
\usepackage{hyperref}
\hypersetup{colorlinks,citecolor=green,urlcolor=red}
\usepackage{minitoc}
% --------------------------------------------- %
\setcounter{secnumdepth}{3}
\setcounter{tocdepth}{3}
\pagenumbering{roman}
\begin{document}
\newcounter{rom}
\begin{titlepage}
Some text
\end{titlepage}
\newpage\thispagestyle{plain}
\addtocounter{rom}{1}\setcounter{page}{2}~
\newpage\thispagestyle{plain}
\setcounter{page}{3}
\chapter*{Declaration}
\chapter*{Acknowledgements}
\chapter*{Abstract}
\addcontentsline{toc}{chapter}{Abstract}
\cleardoublepage
\phantomsection
\dominitoc
\addcontentsline{toc}{chapter}{Contents}
{
\hypersetup{linkcolor=black}
\tableofcontents
}
\newpage\thispagestyle{plain}~
\clearpage
\pagenumbering{arabic}
\chapter{Introduction}
\minitoc
\section{Motivation}
\newpage\cleardoublepage
\chapter{background}
\section{Motivation}
\newpage\cleardoublepage
\end{document}
答案1
由于某种原因添加\调整之前\迷你托克解决了问题。
使用后出现问题\添加内容行所以我通过添加同样多的\调整。因此,对于我的问题中提供的代码,解决方案将如下所示:
...
\chapter{Introduction}
\adjustmtc\adjustmtc
\minitoc
\section{Motivation}
\newpage\cleardoublepage
...