Koma scrbook — одна сторона, отметка главы слева, отметка раздела справа

Koma scrbook — одна сторона, отметка главы слева, отметка раздела справа

Я все еще борюсь с использованием leftmark и rightmark. Кажется leftmark = rightmark!

Я пытаюсь напечатать chaptermarkслева от заголовка и sectionmarkслева.

МВЭ:

\documentclass[a4paper, oneside, 12pt, parskip=half]{scrbook}

\usepackage[a4paper,
  vmargin=2cm, hmargin=2cm, % page margins
  includehead, includefoot, % Margins calculated include header and footer
  footskip=2em]
{geometry}

\usepackage[footsepline=0.25pt, headsepline=0.25pt, automark]{scrlayer-scrpage}

% automark places chapter/section title in header. Also enables placement in footer.
\automark[section]{chapter}

\usepackage{lastpage}

\ohead{\rightmark}

% Footer content
\cfoot{\tiny{Page \thepage \ of  \pageref*{LastPage} \\
\leftmark}}

\usepackage{lipsum}

\begin{document}

\chapter{Chap One}

\lipsum[1]

\section{Sec One.One}

\lipsum[2-5]

\section{Sec One.Two}

\lipsum[6-10]

\chapter{Chap Two}

\lipsum[11-15]

\end{document}

решение1

Добавить autooneside=falseк опциям пакета:

\documentclass[a4paper, oneside, 12pt, parskip=half]{scrbook}

\usepackage[
  margin=2cm, % page margins
  includeheadfoot, % Margins calculated include header and footer
  footskip=2em]
{geometry}

\usepackage[
  footsepline=0.25pt, headsepline=0.25pt,
  automark,
  autooneside=false% <- added
]{scrlayer-scrpage}
\chead{}
\ohead{\rightmark}

% Footer content
\cfoot{Page \thepage\ of \pageref{LastPage}\\\leftmark}
\addtokomafont{pagefoot}{\tiny}

\usepackage{lastpage}
\usepackage{lipsum}

\begin{document}
\chapter{Chap One}
\lipsum[1]
\section{Sec One.One}
\lipsum[2-5]
\section{Sec One.Two}
\lipsum[6-10]
\chapter{Chap Two}
\lipsum[11-15]
\end{document}

введите описание изображения здесь

введите описание изображения здесь

Или, может быть, вы хотите:

введите описание изображения здесь

\usepackage[
  footsepline=0.25pt, headsepline=0.25pt,
  automark,
  autooneside=false% <- added
]{scrlayer-scrpage}
\chead{}
\ihead{\leftmark}
\ohead{\rightmark}

Связанный контент