I have following document:
\documentclass[final]{book}
\usepackage{lipsum}
\usepackage{titlesec}
\titlespacing{\chapter}{0pt}{0pt}{0pt}
\begin{document}
\chapter*{Chapter One}
\lipsum{1-5}
\end{document}
and I want to be able to modify spacing above and below chapter heading. Let's say I want to set both to ugly setting like 0pt.
As you can see from MWE, my first thought was to use titlesec package to do it. But in titlesec manual there is following note:
Notes.
\titlespacingdoes not work with either\chapterand\partunless you change its title format as well by means of\titleformat, the simple settings, or\titleclass.
Now I am bit confused whether it is possible to manipulate chapter headings spacing with titlesec package. If yes, how? If not, what are other options to achieve that?
titlesepart and gives you some alternatives ;-) – Johannes_B Nov 13 '14 at 15:50