使用 scrpage2 制作前言标题

使用 scrpage2 制作前言标题

如何为与正文类似的前言设置页码。正文标题也需要有章节标题。MWE 中未添加。前言必须仅具有页码,就像 MWE 的正文一样。

%
\documentclass[12pt]{scrbook}

\usepackage{scrpage2}
\usepackage{amsmath}
\usepackage{graphicx}

\title{Your Paper}
\author{You}

\begin{document}
\frontmatter
\maketitle
\tableofcontents

\mainmatter
\pagestyle{scrheadings}
\clearscrheadfoot
\ohead[\pagemark]{\pagemark}
\chapter{First}
\section{Introduction}
Text

\section{Some Examples}
Text

\subsection{Sections}
Text

\clearpage
\subsection{Tables and Figures}
Text

\end{document}

答案1

使用 的scrplain页面样式\frontmatter,并切换到scrheadings\mainmatter或者,重新定义\chapterpagestyle处的命令\mainmatter。如果你想要 frontmatter 的前几页主要章节完全不显示页眉/页脚,添加\renewcommand*{\chapterpagestyle}{empty}到序言中。

\documentclass[12pt]{scrbook}

\usepackage{scrpage2}
\clearscrheadfoot
\ohead[\pagemark]{\pagemark}
\ihead{\leftmark}

\renewcommand*{\chapterpagestyle}{empty}

\begin{document}

\frontmatter
\pagestyle{scrplain}

\title{Your Paper}
\author{You}
\maketitle

\tableofcontents

\mainmatter
\pagestyle{scrheadings}
% \renewcommand*{\chapterpagestyle}{scrheadings}% optional

\chapter{First}
\section{Introduction}
Text

\addtocontents{toc}{\protect\clearpage}% just for the example

\section{Some Examples}
Text

\subsection{Sections}
Text

\clearpage
\subsection{Tables and Figures}
Text

\end{document}

相关内容