Page Layout ⇒ How to delete "Chapter [number]"
How to delete "Chapter [number]"
Hello,
I'd like to create chapters without showing the initial sentence "Chapter 1" ecc both in the page and in the header.
How can I do it?
Many thanks
I'd like to create chapters without showing the initial sentence "Chapter 1" ecc both in the page and in the header.
How can I do it?
Many thanks
Last edited by ffarr on Sun Apr 24, 2011 1:07 pm, edited 1 time in total.
NEW: TikZ book now 40% off at Amazon.com for a short time.

- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
How to delete "Chapter [number]"
There's also \chapter* as sectioning command. Note that there will be no entry in the Table of Contents (ToC).
Best regards and welcome to the board
Thorsten
Best regards and welcome to the board
Thorsten
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
How to delete "Chapter [number]"
I see. It works, but the title of the chapter doesn't appear in the header, wich I'd like to..localghost wrote:There's also \chapter* as sectioning command. Note that there will be no entry in the Table of Contents (ToC).
Best regards and welcome to the board
Thorsten
To make my issu clear:
\chapter{The beginning}
prints out:
Chapter 1
The beginning
in the page and: CHAPTER 1. THE BEGINNING, in the header..
Is there any way to maintain "The beginning" in the header, deleating "Chapter 1"?
By the way: is it possible to avoid capital letters in the header?
Oh, thank you for the greetings

- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
How to delete "Chapter [number]"
Oh, a little misunderstanding. Now I see. Also no chapter number? That would be quite confusing and I think you at least keep this.ffarr wrote:[…] It works, but the title of the chapter doesn't appear in the header, wich I'd like to. […]
A quick solution would be to migrate the document to a class of the KOMA Script bundle and use its \addchap command. Perhaps memoir has similar features
For customized headers you can take a look at fancyhdr or titlesec. The latter one would also allow a full customization of chapter styles. But for more we first should clarify my above question.ffarr wrote:[…] By the way: is it possible to avoid capital letters in the header? […]
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Re: How to delete "Chapter [number]"
Ok I'll have a look. My opera is not a regular book. It's divided in 3 huge chapters, so I don't need chapter numbers, but I do need chapter titles in the header, so you always know where you are.
So, it has to be like this:
Chapter title [in the page]
and
Chapter title [in the header]
Just plain, like this, without "Chapter" and chapter numbers.
Thanks for the help, I'll read through the links you advice me.
(by the way: I'm quite new at LaTex, so if you can try to make things as clear as possible
)
So, it has to be like this:
Chapter title [in the page]
and
Chapter title [in the header]
Just plain, like this, without "Chapter" and chapter numbers.
Thanks for the help, I'll read through the links you advice me.
(by the way: I'm quite new at LaTex, so if you can try to make things as clear as possible

- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Re: How to delete "Chapter [number]"
One last question I forgot. What about the ToC entries? Are the chapters going to appear with or without chapter number in the Table of Contents? And is the document single- or double-sided? (OK, I admit these are two questions).
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
How to delete "Chapter [number]"
I don't mind the number of the chapters in the table of contents.localghost wrote:One last question I forgot. What about the ToC entries? Are the chapters going to appear with or without chapter number in the Table of Contents? And is the document single- or double-sided? (OK, I admit these are two questions).
I'm using the default {book} class right now. I will change the layout (dimension of the page, padding etc) later. So yes, it's 2 sided, I'm not going to change that, because it has to be like that.
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
How to delete "Chapter [number]"
That makes things a little bit easier.ffarr wrote:I don't mind the number of the chapters in the table of contents. […]
Ok, that is enough information for an appropriate document setup.ffarr wrote:[…] I'm using the default {book} class right now. I will change the layout (dimension of the page, padding etc) later. So yes, it's 2 sided, I'm not going to change that, because it has to be like that.
Code: Select all
\documentclass[11pt,a4paper,twoside,english]{book}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[%
headheight=14pt,
includehead,
nofoot
]{geometry}
\usepackage{babel}
\usepackage[raggedright,pagestyles]{titlesec}
\usepackage{blindtext}
\newpagestyle{main}{%
\sethead[\thepage][][\chaptertitle]{\chaptertitle}{}{\thepage}
\headrule
}
\pagestyle{main}
\titleformat{\chapter}{\normalfont\huge\bfseries}{}{0pt}{\Huge}
\begin{document}
\tableofcontents
\blinddocument
\end{document}
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Re: How to delete "Chapter [number]"
This is simply perfect. Thank you SO much!

