scrbook 中的页眉和页脚

scrbook 中的页眉和页脚

我在使用 scrbook 类时遇到了问题。由于我对它还很陌生,我花了相当多的时间进行研究,但不知何故一直没有找到解决方法。我正在尝试为 uni 编写一份 LaTeX 文档,并希望每页都有页眉和页脚。我的文档中的基本行如下:

\documentclass[10pt,twoside,a4paper,fleqn,ngerman]{scrbook}

\usepackage[utf8]{inputenc}

\usepackage[left=1cm,right=1cm,top=1cm,bottom=1cm, includeheadfoot]{geometry}

\usepackage[automark,headsepline]{scrpage2}

\deftripstyle{pagestyle}[0.5pt][0.3pt]{\pagemark}{}{\titleinfo}{\pagemark}{\today}{\authorinfo}
\pagestyle{pagestyle}


\newcommand{\titleinfo}{Model}
\newcommand{\authorinfo}{D. Wright}

\begin{document}

\chapter{Chapter}

\end{document}

不知怎的,它似乎不起作用。我得到以下输出: 测试文件

当我将 更改\documentclassarticle或 时,scrartcl我确实获得了每页的页眉和页脚,但在book或中却没有scrbook(这是我想要使用的)。有人能帮帮我吗?

答案1

正如 KoMaScript 手册第 3.12 节所述,章节起始页使用\chapterstyle页面样式,并且 的默认含义\chapterstyleplain。只需更新含义即可:

\documentclass[10pt,twoside,a4paper]{scrbook}

\usepackage[utf8]{inputenc}

\usepackage[
  left=1cm,
  right=1cm,
  top=1cm,
  bottom=1cm,
  includeheadfoot
]{geometry}

\usepackage[automark,headsepline]{scrpage2}

\usepackage{kantlipsum}

\deftripstyle{pagestyle}
  [0.5pt]
  [0.3pt]
  {\pagemark}
  {}
  {\titleinfo}
  {\pagemark}
  {\today}
  {\authorinfo}

\pagestyle{pagestyle}
% use "pagestyle" also on chapter starting pages
\renewcommand{\chapterpagestyle}{pagestyle}


\newcommand{\titleinfo}{Model}
\newcommand{\authorinfo}{D. Wright}

\begin{document}

\chapter{Chapter}

\kant
\end{document}

(该kantlipsum包仅用于提供模拟文本。)

在此处输入图片描述

相关内容