我想在页眉上显示章节标题。但是在章节的第一页上,只包含章节标题。我怎样才能在第一页上包含章节标题?
梅威瑟:
\documentclass[fontsize=11pt, paper=a4]{scrbook}
\usepackage{scrlayer-scrpage}
\pagestyle{scrheadings}
\ihead*{\leftmark}
\ohead*{\rightmark}
\chead*{}
\usepackage{lipsum}
\begin{document}
\chapter{The First Chapter}
\section{The First Section}
\lipsum
\section{The Second Section}
\lipsum
\end{document}