我怎样才能创建一个没有编号的章节(简介)?
我有:
\documentclass[12pt,a4paper]{mwrep}
\chapter{Introduction}
\chapter{Chapter 1}
\chapter{Chapter 2}
在 ToC 中我有:
- 简介................. 1
- 第1章 ..................2
- 第2章 ..................3
我希望有:
简介 ..................1
1. 第 1 章 ..................2
2. 第 2 章 ..................3
我希望介绍的行为就像参考书目一样,与目录中的章节处于同一级别,但没有编号。
答案1
对于标准类别(article
,, ) report
,book
您可以使用带星号的版本\chapter
,该版本不仅会隐藏数字,还会隐藏目录条目,因此您必须手动添加它\addcontentsline
\documentclass{report}
\begin{document}
\tableofcontents
\chapter*{Introduction}
\addcontentsline{toc}{chapter}{Introduction}
\chapter{Chapter 1}
\chapter{Chapter 2}
\end{document}
或者使用 KOMA-Script ( scrartcl
, scrreprt
, scrbook
) 来处理\addchap
这种情况(以及\addsec
部分情况):
\documentclass{scrreprt}
\begin{document}
\tableofcontents
\addchap{Introduction}
\chapter{Chapter 1}
\chapter{Chapter 2}
\end{document}
我不知道memoire
使用时的行为\chapter
答案2
MWCLS 支持\chapter*
,您无需再执行任何其他操作,它将以 TOC 结束,因为波兰规则要求这样做。