Im using quotchap with the big chapter numbering and i like it. Its just that i think ti could be a bit further up so i can fit a bit more text onto a page.
Does anyone know how i would do this?
Page Layout ⇒ Chapter number/title position with quotchap
Chapter number/title position with quotchap
Last edited by tweeg on Fri Feb 04, 2011 11:18 pm, edited 1 time in total.
NEW: TikZ book now 40% off at Amazon.com for a short time.
Chapter number/title position with quotchap
The vertical space before the chapter number is created with a command called \chapterheadstartvskip. The default definition of this is \vspace*{2.3\baselineskip}, i.e., vertical space equal to 2.3 times the distance from one line to another in normal text. You can reduce the space by changing this definition to something else, or even make it negative:
Code: Select all
\documentclass{book}
\usepackage{quotchap}
\renewcommand{\chapterheadstartvskip}{\vspace*{-1\baselineskip}}
\begin{document}
\chapter{A Chapter Heading}
Some text
\end{document}
Re: Chapter number/title position with quotchap
Ty so much =)