[page break]
[lots of whitespace]
Chapter \thechapter
[whitespace]
Foo
[lots of whitespace]
I would instead get
Chapter \thechapter{:} Foo % note no page or line break
[minimal whitespace]
I managed to do this by copying book.cls to mybook.cls and randomly hacking it, but still had to add white space manually after each
\chapter
call throughout the body of the document.Can someone suggest an elegant way to accomplish this via a single
\renewcommand
or the like in my preamble? Thank you.Code: Select all
\documentclass[12pt]{mybook}
\begin{document}
\chapter{Foo}
\chapter{Bar}
\end{document}