在 scrbook 类中,我的运行标题太高了。我查看了手册的第 44 页(“使用 typearea 计算页面布局”),但尽管这解决了两行标题的问题,但它并没有解释如何删除太高的标题。这是我正在使用的类选项:
\documentclass[fontsize=11.5pt,paper=6in:9in,BCOR=7.5mm,headlines=1.25]{scrbook}
梅威瑟:
\documentclass[fontsize=11.5pt,paper=6in:9in,BCOR=7.5mm,headlines=2]{scrbook}
\usepackage[%
left=.375mm,
right=.375mm,
top=.375mm,
bottom=.375mm,
]{geometry}
\KOMAoptions{DIV=calc}
\recalctypearea
\usepackage[automark]{scrlayer-scrpage}
\pagestyle{headings}
\automark[section]{chapter}
\usepackage{blindtext}
\begin{document}
\chapter{Chapter 1}
\blindtext[3]
\section{Section 1}
\blindtext[3]
\section{Section 2}
\blindtext[3]
\end{document}
答案1
插入此代码将根据需要删除正在运行的标题:
\pagestyle{scrheadings}
\clearpairofpagestyles
\renewcommand*{\chaptermarkformat}{}
\ohead{\vspace*{-1.5cm}\headmark}
\cfoot*{\pagemark}
关键行是\ohead
命令。如果省略最后一行,则会丢失页码。