我正在使用 minitoc。
在主文件中,
\usepackage[english,tight]{minitoc}
...
...
\begin{document}
\dominitoc
\frontmatter
...
...
\input(myChapter_one)
每一章(单独文件)
\chapter{Chapter name}
\minitoc
...
...
直到今天它都运行良好。现在,我看到,例如在第 5 章中,minitoc 未同步,它显示第 4 章,例如 4.1.2 .. ..4.2....
和,
第一章没有 minitoc![\minitoc
命令仍然在第一章中!]
你能给我一些线索吗?
答案1
看起来您的文档中缺少的重要内容\tableofcontents
是\faketableofcontents
。
如果没有其中之一,minitoc
软件包将无法\jobname.mtc*
正确更新文件。根据您的描述,该软件包似乎minitoc
是从“旧”版本运行的,\jobname.mtc*
因为您在第 5 章中看到了第 4 章minitoc
。
这是 MWE
\documentclass{report}
\usepackage{minitoc}
\begin{document}
\dominitoc
\faketableofcontents % need either this line
%\tableofcontents % or this one for minitoc to work
\include{chapter1}
\end{document}
如果这没有帮助,请在您的问题中发布更多详细信息。