
答案1
您可以阻止自動將索引新增至目錄中,然後手動新增。例如,使用
\usepackage[intoc=false]{imakeidx}
而不是\usepackage{makeidx}
在序言中,然後在文件的末尾:
\phantomsection % assuming you have hyperref loaded, otherwise omit
\addcontentsline{toc}{chapter}{INDICE REMISSIVO}
\printindex
應該可以做到這一點。 (如果您使用該tocbibind
套件,請向其傳遞noindex
選項以禁止自動產生索引的 TOC 條目)。