I'm trying to use scrlayer-scrpage with a twosided document using the scrartcl class but somehow can't manage to format the plain pagestyle in a way that is similar to the scrheadings style. I prepared the following MWE – thanks in advance!
\documentclass[12,a4paper,twoside]{scrartcl}
\usepackage[automark,headsepline,footsepline,markcase=nouppercase]{scrlayer-scrpage}
\renewcommand*{\sectionmarkformat}{}
\renewcommand*{\subsectionmarkformat}{}
\renewcommand*{\headfont}{\normalfont}
\automark[subsection]{section}
\chead{\leftmark}
\cfoot{\pagemark}
\ihead{}
\ohead{}
\ifoot{}
\ofoot{}
\begin{document}
\pagestyle{scrheadings}
\section{Blah.}
Blah.
\newpage
\section{Blah.}
Blah.
\newpage
\pagestyle{plain.scrheadings}
\section{Blah.}
Blah.
\newpage
\section{Blah.}
Blah.
\end{document}
\cfoot*{\pagemark}(note the asterisk) and do similar for the other instances. – Johannes_B Jun 28 '16 at 20:23\newpagein your code are clues, that you should have used areport(or een book) class. – Johannes_B Jun 28 '16 at 20:32