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:
<code>usepackage{etoolbox}
makeatletter
patchcmd{scr@startchapter}{if@openrightcleardoublepageelseclearpagefi}{}{}{}
makeatother
</code>
<code>usepackage{etoolbox}
makeatletter
patchcmd{scr@startchapter}{if@openrightcleardoublepageelseclearpagefi}{}{}{}
makeatother
</code>
usepackage{etoolbox}
makeatletter
patchcmd{scr@startchapter}{if@openrightcleardoublepageelseclearpagefi}{}{}{}
makeatother
or
<code>makeatletter
renewcommand{@endpart}{vfilif@twosidenullthispagestyle{empty}newpagefiif@tempswatwocolumnfi}
makeatother
</code>
<code>makeatletter
renewcommand{@endpart}{vfilif@twosidenullthispagestyle{empty}newpagefiif@tempswatwocolumnfi}
makeatother
</code>
makeatletter
renewcommand{@endpart}{vfilif@twosidenullthispagestyle{empty}newpagefiif@tempswatwocolumnfi}
makeatother
I would appreciate any help.