How can I make one chapter (Introduction) without number?
I have:
\documentclass[12pt,a4paper]{mwrep}
\chapter{Introduction}
\chapter{Chapter 1}
\chapter{Chapter 2}
In ToC I have:
- Introduction ..............1
- Chapter 1 .................2
- Chapter 2 .................3
I want to have:
Introduction .................1
1. Chapter 1 .................2
2. Chapter 2 .................3
I want introduction to behave just like the bibliography which is at the same level in ToC as chapters but without number.
\addcontentsline{toc}{section}{Introduction}? In my document, it works without this line. – Ichibann Jul 12 '11 at 22:06\addcontentsline{toc}{<level>}{<text>}command writes the TOC entry. (See my edited post for KOMA-Script, which behaves in the same way for starred sectioning commands but provides the\addchap[and\addpart/\addsec] command[s]). See my edits … – Tobi Jul 12 '11 at 22:10