答案1
已经回答了这里。
如果您希望删除特定级别(例如小节)的页码,请重新定义 \l@subsection{title}{page number}。
答案2
基本思路是使用星号形式:\chapter*{Attachments}
与 相关联\addcontentsline{toc}{chapter}{Attachments}
。最后一点是必要的,因为星号形式会减少章节编号,但也会阻止其出现在目录中。
\documentclass[a4paper,10pt]{book}
\begin{document}
\tableofcontents
\chapter{This is chapter1}
blah blah
\chapter*{Attachments}
\addcontentsline{toc}{chapter}{Attachments}
blah blah
\end{document}
会给: