Document Classes ⇒ Remove 'Chapter 1...N' in report-class
Remove 'Chapter 1...N' in report-class
Hi guys,
I switched from scrreprt (KOMA) to the normal report class because I didn't like the formatting. Now, there's a 'Chapter 1...N' heading before each chapter. How can I remove that? It's a bit disproportionate for a thesis.
Thanks!
I switched from scrreprt (KOMA) to the normal report class because I didn't like the formatting. Now, there's a 'Chapter 1...N' heading before each chapter. How can I remove that? It's a bit disproportionate for a thesis.
Thanks!
NEW: TikZ book now 40% off at Amazon.com for a short time.

Remove 'Chapter 1...N' in report-class
It's much easier to stick with scrreprt because the KOMA classes are much more flexible. What exactly do you want to change? For example, if you want serif fonts for headings like the standard classes, it's as easy as
Code: Select all
\addtokomafont{disposition}{\rmfamily}
Re: Remove 'Chapter 1...N' in report-class
Biggest problem with KOMA is the heading enumeration. There's a period after the last number, which is formally not allowed. Like 1. Heading, 1.1. Heading. How can I remove that?
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Remove 'Chapter 1...N' in report-class
First of all read the very good manual.demon wrote:Biggest problem with KOMA is the heading enumeration. There's a period after the last number, which is formally not allowed. Like 1. Heading, 1.1. Heading. How can I remove that?
Code: Select all
\documentclass[numbers=noenddot]{scrreprt}
Code: Select all
\documentclass[pointlessnumbers]{scrreprt}
MfG
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...N' in report-class
That was easy. Thanks a lot! 

Remove 'Chapter 1...N' in report-class
The numbers option should be documented by now, at least it is documented in my version of scrguien, and that isn't even the newest one.localghost wrote:First of all read the very good manual.demon wrote:Biggest problem with KOMA is the heading enumeration. There's a period after the last number, which is formally not allowed. Like 1. Heading, 1.1. Heading. How can I remove that?Note that this is the way this option is given in KOMA Script 3. The english manual isn't yet up to date.Code: Select all
\documentclass[numbers=noenddot]{scrreprt}
This should not be necessary. Using pointlessnumbers in combination with version 3 produces a warning message that tells exactly what to do:localghost wrote:The older Version 2 had different options.Check which version you have installed by inserting a \listfiles command as very first line in your source code. The used packages are listed in the log file between *File List* and ***********.Code: Select all
\documentclass[pointlessnumbers]{scrreprt}
Code: Select all
Class scrreprt Warning: You've used obsolete option `pointlessnumbers'. Usage of this option indicates an old document and changes compatibility level using `numbers=noenddot,version=first'. If you don't want this, you should simply replace usage of option `pointlessnumbers' by `numbers=noenddot'.
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Remove 'Chapter 1...N' in report-class
I can only refer to statements of the author and don't know in detail which parts of the manual have been updated until now.phi wrote:The numbers option should be documented by now, at least it is documented in my version of scrguien, and that isn't even the newest one. […]
You are telling me nothing new. This was meant to show what to do if the key numbers=noenddot wouldn't have been accepted by the document class.phi wrote:[…] This should not be necessary. Using pointlessnumbers in combination with version 3 produces a warning message that tells exactly what to do […]
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