HI. How do i remove this huge space between the header and the chapter name? And how can I adjust the space between sections/subsections (2nd picture)? Thanks a lot
http://up.picr.de/18440185ee.png
http://up.picr.de/18440182ey.png
Toby
Theses, Books, Title pages ⇒ Gap before new chapter
-
- Posts: 679
- Joined: Tue Mar 03, 2015 4:01 pm
Gap before new chapter
Last edited by templateuser on Mon Mar 30, 2015 1:14 pm, edited 1 time in total.
NEW: TikZ book now 40% off at Amazon.com for a short time.

Gap before new chapter
Hey,
To do both of those things you'll need to use the
Cheers,
Vel
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
Founder and administrator of LaTeXTemplates.com and LaTeXTypesetting.com
-
- Posts: 679
- Joined: Tue Mar 03, 2015 4:01 pm
Gap before new chapter
Hey Vel. Thank you very much! I was able to adjust the spacing in my thesis' content, but not on the content page, list of figure page, etc. I tried
Cheers,
Toby
\chapter
, \part
etc. but nothing is workingCheers,
Toby
Gap before new chapter
Hey Toby,
These three commands are what you want, just add them to your preamble and that's it!
Cheers,
Vel
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
Founder and administrator of LaTeXTemplates.com and LaTeXTypesetting.com
-
- Posts: 679
- Joined: Tue Mar 03, 2015 4:01 pm
Gap before new chapter
Hey Vel,
I was trying to reduce the space above the chapter titles to. Reading the previous posts I tried to use
but it does not appear to change anything.
Do you have any tips?
Cheers,
Leach
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
Hi Leach,
The reason it's not working is due to this line in the titlesec documentation:
Cheers,
Vel
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
Founder and administrator of LaTeXTemplates.com and LaTeXTypesetting.com