Theses, Books, Title pages ⇒ Gap before new chapter
-
- Posts: 679
- Joined: Tue Mar 03, 2015 4:01 pm
Gap before new chapter
http://up.picr.de/18440185ee.png
http://up.picr.de/18440182ey.png
Toby
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Gap before new chapter
To do both of those things you'll need to use the
titlesec
package. There's been a few questions on how to do specific things with the different section titles so have a look on this forum for some ideas.Cheers,
Vel
-
- Posts: 679
- Joined: Tue Mar 03, 2015 4:01 pm
Gap before new chapter
\chapter
, \part
etc. but nothing is workingCheers,
Toby
Gap before new chapter
These three commands are what you want, just add them to your preamble and that's it!
Code: Select all
\renewcommand\listfigurename{New Name for List of Figures}
\renewcommand\listtablename{New Name for List of Tables}
\renewcommand\contentsname{New Name for Table of Contents}
Vel
-
- Posts: 679
- Joined: Tue Mar 03, 2015 4:01 pm
Gap before new chapter
I was trying to reduce the space above the chapter titles to. Reading the previous posts I tried to use
Code: Select all
\usepackage{titlesec}
\titlespacing*{\chapter}{}{-5cm}{}
Do you have any tips?
Cheers,
Leach
Gap before new chapter
The reason it's not working is due to this line in the titlesec documentation:
Therefore, all you have to do is re-define the title withNote. \titlespacing does not work with neither\chapter
nor\part
unless you change its title format as well by means of\titleformat
, the simple settings, or\titleclass
.
\titleformat
such as here, then you can use titlespacing.Cheers,
Vel