Page LayoutRemove chapter 1

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
yavanna
Posts: 1
Joined: Fri Mar 27, 2009 7:13 pm

Remove chapter 1

Post by yavanna »

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

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Remove chapter 1

Post by localghost »

Using the search function of the forum would have yielded suitable results. The following is for standard classes.

Code: Select all

\chapter*{Example}
\addcontentsline{toc}{chapter}{Example}
Other classes may have built-in features.


Best regards and welcome to the board
Thorsten¹
tc105
Posts: 6
Joined: Tue Mar 31, 2009 10:48 pm

Re: Remove chapter 1

Post by tc105 »

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.
User avatar
Stefan Kottwitz
Site Admin
Posts: 10320
Joined: Mon Mar 10, 2008 9:44 pm

Remove chapter 1

Post by Stefan Kottwitz »

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
LaTeX.org admin
tc105
Posts: 6
Joined: Tue Mar 31, 2009 10:48 pm

Re: Remove chapter 1

Post by tc105 »

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.
phi
Posts: 577
Joined: Tue Oct 21, 2008 8:10 pm

Remove chapter 1

Post by phi »

Then try

Code: Select all

\chapter*{...}
\stepcounter{chapter}
tc105
Posts: 6
Joined: Tue Mar 31, 2009 10:48 pm

Re: Remove chapter 1

Post by tc105 »

Thanks, it works perfectly.
Post Reply