Page Layout ⇒ Remove chapter 1
Remove chapter 1
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
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Remove chapter 1
Code: Select all
\chapter*{Example}
\addcontentsline{toc}{chapter}{Example}
Best regards and welcome to the board
Thorsten¹
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Re: Remove chapter 1
Thanks.
- Stefan Kottwitz
- Site Admin
- Posts: 10358
- Joined: Mon Mar 10, 2008 9:44 pm
Remove chapter 1
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
Re: Remove chapter 1
Remove chapter 1
Code: Select all
\chapter*{...}
\stepcounter{chapter}