使用 scrlayer-scrpage 自定义章节和节标题

使用 scrlayer-scrpage 自定义章节和节标题

我想自定义我的奇数和偶数标题在 scrbook 类中的样子。

甚至页面也应该如下所示:

页码(左)第 1 章:第一章标题(中)为空(右)

奇数页的第一部分应如下所示:

空(左) 1. 第一节的标题(中间) 页码(右)

奇数页的第二部分看起来应如下所示:

空(左) 2. 第二节的标题(中间) 页码(右)

以下是我目前所拥有的 MWE:

\documentclass[twoside]{scrbook}
\usepackage[]{scrlayer-scrpage}
\usepackage{lipsum}
\clearpairofpagestyles
\lehead{}
\cehead{Chapter\space\leftmark}
\lehead{\pagemark}
\lohead{}
\cohead{\rightmark}
\rohead{\pagemark}
\lefoot{}
\cfoot{}
\begin{document}
\chapter{CHTITLE}
\lipsum[1-20]
\section{STITLE}
\lipsum[21-40]
\end{document}

请注意,章节编号不应像现在这样包含章节编号(而不是 1.1 或 1.2,而应该只是 1 或 2)

答案1

\documentclass[twoside]{scrbook}
\usepackage{scrlayer-scrpage}
\usepackage{lipsum}
\clearpairofpagestyles
\ohead*{\pagemark}
\chead{\headmark}

\renewcommand\sectionmarkformat{\arabic{section}.\enskip}
\renewcommand\chaptermarkformat{\chaptername\ \thechapter:\enskip}

\begin{document}
\chapter{CHTITLE}
\lipsum[1-20]
\section{STITLE}
\lipsum[21-40]
\section{SECOND STITLE}
\lipsum[41-60]
\end{document}

结果是

在此处输入图片描述

相关内容