Theses, Books, Title pagesGap before new chapter

Classicthesis, Bachelor and Master thesis, PhD, Doctoral degree
Post Reply
templateuser
Posts: 679
Joined: Tue Mar 03, 2015 4:01 pm

Gap before new chapter

Post by templateuser »

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
Last edited by templateuser on Mon Mar 30, 2015 1:14 pm, edited 1 time in total.

Recommended reading 2024:

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

NEW: TikZ book now 40% off at Amazon.com for a short time.

Vel
Site Moderator
Posts: 463
Joined: Fri Jun 29, 2012 1:20 am

Gap before new chapter

Post by Vel »

Hey,

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
templateuser
Posts: 679
Joined: Tue Mar 03, 2015 4:01 pm

Gap before new chapter

Post by templateuser »

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 \chapter, \part etc. but nothing is working

Cheers,
Toby
User avatar
Vel
Site Moderator
Posts: 463
Joined: Fri Jun 29, 2012 1:20 am

Gap before new chapter

Post by Vel »

Hey Toby,

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}
Cheers,
Vel
Founder and administrator of LaTeXTemplates.com and LaTeXTypesetting.com
templateuser
Posts: 679
Joined: Tue Mar 03, 2015 4:01 pm

Gap before new chapter

Post by templateuser »

Hey Vel,

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}{}
but it does not appear to change anything.

Do you have any tips?

Cheers,

Leach
User avatar
Vel
Site Moderator
Posts: 463
Joined: Fri Jun 29, 2012 1:20 am

Gap before new chapter

Post by Vel »

Hi Leach,

The reason it's not working is due to this line in the titlesec documentation:
Note. \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.
Therefore, all you have to do is re-define the title with \titleformat such as here, then you can use titlespacing.

Cheers,
Vel
Founder and administrator of LaTeXTemplates.com and LaTeXTypesetting.com
Post Reply