Theses, Books, Title pagesNo newpage before each chapter

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

No newpage before each chapter

Post by templateuser »

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

Recommended reading 2024:

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

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

kaku92
Posts: 3
Joined: Sun Apr 26, 2015 1:06 am

No newpage before each chapter

Post by kaku92 »

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}
Post Reply