Text Formatting ⇒ Size of Chapter Headings
-
- Posts: 13
- Joined: Wed Mar 14, 2012 10:20 am
Size of Chapter Headings
I used the "report" class. In this class size of chapter headings is very big, how can I change it? I can't change this Class, because the all text it's broken.
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
Size of Chapter Headings
For the standard classes like »report« take a look at the titlesec package. Other classes like those from the KOMA-Script bundle or the memoir class have built-in features.
Best regards and welcome to the board
Thorsten
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
- Stefan Kottwitz
- Site Admin
- Posts: 10345
- Joined: Mon Mar 10, 2008 9:44 pm
Size of Chapter Headings
Hi Patricia,
welcome to the board!
To give you an easy start with titlesec, here are some lines which you could copy to your preamble, giving a one degree smaller size:
I changed
Stefan
welcome to the board!
To give you an easy start with titlesec, here are some lines which you could copy to your preamble, giving a one degree smaller size:
Code: Select all
\usepackage{titlesec}
\titleformat{\chapter}[display]
{\normalfont\Large\bfseries}{\chaptertitlename\ \thechapter}{20pt}{\LARGE}
\titlespacing*{\chapter}{0pt}{50pt}{40pt}
\huge
and \Huge
into \Large
and \LARGE
, respectively. You can also change it to \large
etc. and adjust spacing as desired. Follow Thorsten's link to find the documentation, where the commands are explained. The commands for "cloning" and adjusting the standard class headings are in the appendix.Stefan
LaTeX.org admin
-
- Posts: 13
- Joined: Wed Mar 14, 2012 10:20 am
Size of Chapter Headings
Oh great, finally!! Thanks Stefan, U are wonderful 
I have another a one question.
What is denote this line:
Ok I know now, thanks a lot!

I have another a one question.
What is denote this line:
Code: Select all
\titlespacing*{\chapter}{0pt}{50pt}{40pt}
Last edited by Stefan Kottwitz on Wed Mar 14, 2012 5:16 pm, edited 1 time in total.