如何从章节中删除章节编号?

如何从章节中删除章节编号?

我想在目录中显示我的“附件”,但我不想在它前面显示章节号。我该如何删除它?它是图片中的“Vedlegg”部分。

谢谢你的帮助。在此处输入图片描述

答案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}

会给:

目录

相关内容