GeneralHow we can have chapters without numbers

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
juan21
Posts: 11
Joined: Thu Dec 03, 2015 12:20 am

How we can have chapters without numbers

Post by juan21 »

Good morning, how do I number the chapters of a document? I am doing a thesis in LaTeX, I know that you can use the command \include, the question is this: the thesis consists of three chapters and an introduction. I use the \include command in the introduction and LaTeX registers it as chapter 1, how do I remove that?

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
User avatar
Stefan Kottwitz
Site Admin
Posts: 10290
Joined: Mon Mar 10, 2008 9:44 pm

How we can have chapters without numbers

Post by Stefan Kottwitz »

Hi Juan!

Use \chapter*{Introduction} if you don't want to have that one as a numbered chapter (and not in the table of contents. Use \chapter{Your heading} for your numbered chapters.

If you use a KOMA-Script document class (I strongly recommend that) then you can use \addchap*{Introduction} to have it unnumbered, but listed in the table of contents.

Stefan
LaTeX.org admin
Post Reply