[Tex/LaTex] Change twoside to oneside mid-document

double-sided

Title says it all, i've found answers to changing oneside to twoside but the other way around won't work.
So is this possible? And if so, how?

Best Answer

Possible, but it might be more clean to use two different documents and use package pdfpages to merge them. Just look at the warning generated by package typearea ;-)

\documentclass[twoside]{scrartcl}
\usepackage{showframe}
\usepackage{blindtext}
\begin{document}
\blinddocument
\cleardoublepage
\KOMAoption{twoside}{false}
%\recalctypearea% <-  the recalculation is done by default
\blinddocument
\end{document}