
The chapter enumeration on odd pages should behave the same as all other titles (e.g. subtitle on picture).
Can´t figure out why it is not working. Maybe someone has an idea?
Here´s my code:
\documentclass[twoside]{scrreprt} \usepackage{blindtext} % Align titles to outer side \renewcommand*{\raggedsection}{\ifthispageodd{\raggedleft}{\raggedright}} % Push section enumeration outward \renewcommand*{\sectionlinesformat}[4]{% \ifthispagewasodd #4\makebox[0pt][l]{\hskip\marginparsep #3}% \else \makebox[0pt][r]{#3\hskip\marginparsep}#4% \fi } % Push chapter enumeration outward \makeatletter \renewcommand*{\chapterlinesformat}[3]{% \ifthispagewasodd #3\makebox[0pt][l]{\hskip\marginparsep #2}% % THAT LINE WILL NOT WORK!!! \else \makebox[0pt][r]{#2\hskip\marginparsep}#3% \fi } \makeatother \renewcommand*{\chapterformat}{\thechapter\autodot} \renewcommand*{\sectionformat}{\thesection\autodot} \renewcommand*{\subsectionformat}{\thesubsection\autodot} \renewcommand*{\subsubsectionformat}{\thesubsubsection\autodot} \begin{document} \chapter{Another Chapter} \subsection{Subsection} \blindtext \chapter{Another Chapter} \subsection{Subsection} \blindtext \end{document}