Hello,
I am currently making an action plan and I have noticed that most chapters are very short. I would like to get rid of the newpage that is added before each chapter. How do I do that?
Thanks in advance
Liam
Theses, Books, Title pages ⇒ No newpage before each chapter
NEW: TikZ book now 40% off at Amazon.com for a short time.
No newpage before each chapter
Try this example
\renewcommand{\cleardoublepage}{}
\renewcommand{\clearpage}{}
Code: Select all
%---------------------------------------------
\documentclass{report}
\usepackage{blindtext}
\begin{document}
\chapter{Conclusions}\label{chap:end}
\blindtext
\renewcommand{\cleardoublepage}{}
\renewcommand{\clearpage}{}
\chapter{Acknowledgments}\label{chap:ack}
\blindtext
\end{document}