Document Classes ⇒ Remove 'Chapter 1...N' in report-class
Remove 'Chapter 1...N' in report-class
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.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
Remove 'Chapter 1...N' in report-class
Code: Select all
\addtokomafont{disposition}{\rmfamily}
Re: Remove 'Chapter 1...N' in report-class
- 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¹
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Re: Remove 'Chapter 1...N' in report-class

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 […]
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10