Text FormattingSize of Chapter Headings

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
patricia__88
Posts: 13
Joined: Wed Mar 14, 2012 10:20 am

Size of Chapter Headings

Post by patricia__88 »

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.

Recommended reading 2024:

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

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

Post by localghost »

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

Size of Chapter Headings

Post by Stefan Kottwitz »

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:

Code: Select all

\usepackage{titlesec}
\titleformat{\chapter}[display]
  {\normalfont\Large\bfseries}{\chaptertitlename\ \thechapter}{20pt}{\LARGE}
\titlespacing*{\chapter}{0pt}{50pt}{40pt}
I changed \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
patricia__88
Posts: 13
Joined: Wed Mar 14, 2012 10:20 am

Size of Chapter Headings

Post by patricia__88 »

Oh great, finally!! Thanks Stefan, U are wonderful :)
I have another a one question.
What is denote this line:

Code: Select all

\titlespacing*{\chapter}{0pt}{50pt}{40pt}
Ok I know now, thanks a lot!
Last edited by Stefan Kottwitz on Wed Mar 14, 2012 5:16 pm, edited 1 time in total.
Post Reply