我开始使用scrpage2
。scrbook
我不明白的第一件事是 的用法\automark[chapter]{chapter}
。我怎样才能让 章节 在左侧和右侧标题上显示。我设法用小节和章节等来做到这一点。但第一个似乎更难。
\documentclass[12pt, draft]{scrbook}
\usepackage[automark]{scrpage2}
之间\begin{document}
\end{document}
\pagestyle{scrheadings}
\ohead{\pagemark}
\cehead{\leftmark}
\cohead{\rightmark}
\ofoot[]{}
%%%%%%
\chapter{Intro}
\automark[chapter]{chapter}
\chapter{Different Chapter}
\automark[subsection]{chapter}
ETC。
答案1
据我所知,\headmark
指的是偶数页(左手边)的章节和奇数页(右手边)的章节。
如果你说
\ihead{\leftmark}
您将在所有页面的页眉内侧看到章节标题,而无需给出任何\automark
命令。