makeindex 跳过了一些条目

makeindex 跳过了一些条目

检查我正在处理的文档的 PDF 文件时,我注意到侧边栏索引中缺少某些章节和部分。我一直在使用 imakeidx,如下所示:

\documentclass[11pt,a4paper]{book}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel} 
\usepackage{imakeidx} 
\usepackage{cancel}
\usepackage{ulem}
\usepackage{hyperref}
\usepackage{cleveref}
\makeindex 
\usepackage[nottoc]{tocbibind}


\begin{document}
    \part{Part One}
    \chapter{First Chapter}
    \chapter{Second Chapter}
    \chapter{Third Chapter}
    \chapter{Chapter 4}
    \chapter{Chapter 5}
    \chapter{Next Chapter}
    \chapter{Chapter after Next Chapter}
    \chapter{Yet another chapter}
    \chapter{Final Chapter for Part One}
    \chapter{Ok, This is Really the Final Chapter for this Part}
    \part{Part Two}
    \part{Part Three}
\end{document}

这个最小工作示例对我来说很好用。但是,例如,原始文档中缺少第 2 至 6 部分和第 2 至 6 章。我不知道是什么原因导致了这个问题,也不知道我该如何修复它。

相关内容