scrlayer-scrpage - scrreprt 中的章节在偶数页,部分在奇数页

scrlayer-scrpage - scrreprt 中的章节在偶数页,部分在奇数页

我想要一个标题布局,如安东尼·纳普的李群即我想要

在此处输入图片描述

章节放在偶数页,当前章节放在奇数页。我正在使用类scrreprt并尝试使用此解决方案

\usepackage[
        automark,
        autooneside=false,
        headsepline,
    ]
    {scrlayer-scrpage}
        \clearpairofpagestyles
        \cfoot*{\pagemark}
        \chead{\headmark}
        \renewcommand\chaptermarkformat{\thechapter.\enskip}

但这似乎只适用于书籍类。我还想将页码放在底部,但我自己已经这样做了。

答案1

您可以使用内部命令\Ifthispageodd并测试页面是偶数还是奇数,然后根据需要设置运行标题:

在此处输入图片描述

\documentclass{scrreprt}
\usepackage{blindtext}% only for dummy text

\usepackage[
  automark,
  autooneside=false,% <- if you want to use \leftmark and \rightmark in a one sided document
  headsepline=true
]{scrlayer-scrpage}
\pagestyle{scrheadings}
\cohead{\Ifthispageodd{\leftmark}{\rightmark}}
\cfoot*{\pagemark}


\begin{document}

\blinddocument
\end{document}

相关内容