I am using scrreprt document class. When I create a new chapter, it starts it on a new blank page.
documentclass[11pt,oneside]{scrreprt}
I want to be able to start new chapters on the same page as the old chapter ends. Is there any way to do it?
I already tried:
usepackage{etoolbox}
makeatletter
patchcmd{scr@startchapter}{if@openrightcleardoublepageelseclearpagefi}{}{}{}
makeatother
or
makeatletter
renewcommand{@endpart}{vfilif@twosidenullthispagestyle{empty}newpagefiif@tempswatwocolumnfi}
makeatother
I would appreciate any help.