向 Scrbook 页眉/页脚添加文本的最少方法

向 Scrbook 页眉/页脚添加文本的最少方法

我正在使用 scrbook 类,还没有对其进行太多配置。我也不打算这样做。

默认情况下,非章节页面的页眉是章节标题,在偶数页上左对齐,在奇数页上右对齐。同样,页脚只是页码。

我只是想在页脚中添加文本(假设现在应该是Draft v1.1 Page #pagenumber)。当我搜索有关如何修改页眉/页脚的建议时,我得到的示例比这更复杂。

我不需要其他人所做的事情的复杂性。我只想用上面的模式替换页脚文本。

实现此目的的最少代码方法是什么?我并不特别在意是否失去奇数/偶数对齐或其他类似的外观调整,我只是想保持简单。

答案1

您可以重新定义\pagemark以添加附加信息:

\documentclass{scrbook}

\renewcommand\pagemark{{%
  \usekomafont{pagenumber}Draft v1.1 Page \thepage
}}

\usepackage{blindtext}% only for the dummy text in this example
\begin{document}
\Blinddocument
\end{document}

在此处输入图片描述

如果您不想使用字体元素pagenumber

\documentclass{scrbook}

\renewcommand\pagemark{Draft v1.1 Page \thepage}

\usepackage{blindtext}% only for the dummy text in this example
\begin{document}
\Blinddocument
\end{document}

答案2

\documentclass{scrbook}
\usepackage{scrlayer-scrpage}
\usepackage{lipsum}
\pagestyle{scrheadings}
\renewcommand\chapterpagestyle{scrheadings} % ensures that the first page of chapters is formatted the same
\ofoot{Draft v1.1 Page \pagemark}
\begin{document}
\chapter{First Chapter}
\lipsum\lipsum
\chapter{Second Chapter}
\lipsum\lipsum
\end{document}

在此处输入图片描述

在此处输入图片描述

相关内容