我正在準備我的論文,但不幸的是附錄的頁碼沒有正確顯示在我的目錄中。這是我的程式碼的一部分:
\documentclass[11pt,twoside,openright]{memoir}
\begin{document}
\begin{KeepFromToc}
\tableofcontents \cleardoublepage
\end{KeepFromToc}
\chapter{Introduction}
This is chapter 1.
\appendix
\part*{Appendices}
\addcontentsline{toc}{part}{Appendices}
\chapter{Appendix A1}
This is A1.
\end{document}
當您編譯此程式碼時,在目錄中會顯示「附錄」位於第 14 頁。 7,但它們在第 7 頁。 5. 非常感謝任何有關如何解決此問題的建議!
答案1
在memoir
課程中,以下命令會將\part*
標題新增至目錄。
\renewcommand\mempartstarinfo[1]{\addcontentsline{toc}{part}{#1}}
如果將其添加到序言中,則所有未編號的部分都會一致地完成。如果您只想新增Appendices
到目錄中,請在 之前新增定義,\part*
並使用大括號將變更本地化。
{\renewcommand\mempartstarinfo[1]{\addcontentsline{toc}{part}{#1}}
\part*{Appendices}%
}