scrpage2 软件包如何强制在每一页上显示页眉和页脚

scrpage2 软件包如何强制在每一页上显示页眉和页脚

我希望报告的每一页都有页脚和页眉(我不想更改)。但是当我开始一个章节或其他章节部分(例如目录)时,页眉不会出现。我尝试在每一页上画一条线到页眉,而不是使用 scrpage2 页眉,但据我所知,scrpage2 中缺少的章节页眉是使用白色创建的,因此它不起作用,因为我的黑线被白线覆盖了。

问题:有没有办法强制 scrpage2 标题出现在每一页上?

这是一个最小的工作示例,用于说明章节中的问题。

\documentclass{report}   
\usepackage[nouppercase,headsepline,footsepline,plainfootsepline]{scrpage2}
\pagestyle{scrheadings}
\clearscrheadfoot
%\ihead{(Document title)}
\ofoot[\pagemark]{\pagemark}% Optional argument controls chapter-starting pages

\begin{document}

\maketitle
\newpage
\chapter {Introduction1}
\newpage
\chapter{Introduction2}
\newpage
Test
\newpage
\end{document}

答案1

章节页plain默认使用页面样式。如果纯色页面的页眉下面也需要一行,请添加选项plainheadsepline

请注意,该包scrpage2已过时。下面是其后继的示例scrlayer-scrpage

\documentclass{report}
\usepackage[
  markcase=noupper,
  headsepline,plainheadsepline,
  footsepline,plainfootsepline
]{scrlayer-scrpage}% activates pagestyle scrheadings automatically
\clearpairofpagestyles
\ihead*{(Document title)}
\ofoot*{\pagemark}

\title{Header Footer}
\author{adp2018dik }
\date{October 2018}

\begin{document}
\maketitle
\newpage
\chapter {Introduction1}
\newpage
\chapter{Introduction2}
\newpage
Test
\newpage
\end{document}

结果:

在此处输入图片描述

请注意,\ofoot*{\pagemark}是的简短版本\ofoot[\pagemark]{\pagemark}


与过时的包相同scrpage2

\documentclass{report}
\usepackage[
  nouppercase,
  headsepline,plainheadsepline,
  footsepline,plainfootsepline
]{scrpage2}
\pagestyle{scrheadings}
\clearscrheadfoot
\ihead[(Document title)]{(Document title)}
\ofoot[\pagemark]{\pagemark}

\title{Header Footer}
\author{adp2018dik }
\date{October 2018}

\begin{document}
\maketitle
\newpage
\chapter {Introduction1}
\newpage
\chapter{Introduction2}
\newpage
Test
\newpage
\end{document}

相关内容