Page Layout ⇒ Remove chapter 1
Remove chapter 1
Hello!
I want to remove "Chapter 1" before the title of the chapter, the only way I found out is chapter*{}, but with this method the chapter disappears from the index, too.
are there any methods to prevent that?
Thank you
I want to remove "Chapter 1" before the title of the chapter, the only way I found out is chapter*{}, but with this method the chapter disappears from the index, too.
are there any methods to prevent that?
Thank you
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
Remove chapter 1
Using the search function of the forum would have yielded suitable results. The following is for standard classes.
Other classes may have built-in features.
Best regards and welcome to the board
Thorsten¹
Code: Select all
\chapter*{Example}
\addcontentsline{toc}{chapter}{Example}
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
Re: Remove chapter 1
I have a similar problem. I want to simply remove the heading "Chapter 2" etc but when I use \chapter*{Example} it then numbers all the sections within chapter 2 as chapter 1. Is there a simple way around that?
Thanks.
Thanks.
- Stefan Kottwitz
- Site Admin
- Posts: 10320
- Joined: Mon Mar 10, 2008 9:44 pm
Remove chapter 1
Hi tc105,
welcome to the board!
What exactly do you want? To increase the chapter/section numbering without a new chapter? If needed you could raise the chapter counter by \addtocounter or \stepcounter or \refstepcounter etc.
Stefan
welcome to the board!
What exactly do you want? To increase the chapter/section numbering without a new chapter? If needed you could raise the chapter counter by \addtocounter or \stepcounter or \refstepcounter etc.
Stefan
LaTeX.org admin
Re: Remove chapter 1
Literally all I want is to remove the "Chapter 2" from above the title of the chapter. I want the numbering of everything to stay the same.
Remove chapter 1
Then try
Code: Select all
\chapter*{...}
\stepcounter{chapter}
Re: Remove chapter 1
Thanks, it works perfectly.