Theses, Books, Title pages ⇒ No newpage before each chapter
-
templateuser
- Posts: 679
- Joined: Tue Mar 03, 2015 4:01 pm
No newpage before each chapter
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
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
No newpage before each chapter
\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}