I want to have a headings layout as in Anthony Knapp's Lie Groups, i.e. I want to have
the chapter on even, and the current section on odd pages. I'm using the scrreprt class and tried using this solution:
\usepackage[
automark,
autooneside=false,
headsepline,
]
{scrlayer-scrpage}
\clearpairofpagestyles
\cfoot*{\pagemark}
\chead{\headmark}
\renewcommand\chaptermarkformat{\thechapter.\enskip}
but this only seems to work in the book class. Also I want to have the page numbers on the bottom but I already go that myself.


But I found another solution, it works if you use the global option twoside=semi, which gives a onesided layout while acutally being twoside
– HannahBloom Jun 25 '20 at 22:37