移动章节标题的位置

移动章节标题的位置

如何才能减少“第 4 章”和页面顶部之间的距离?

% Customize the placement of the chapter title in the header
\renewcommand{\chaptermark}[1]{%
  \markboth{%
    \vspace{-0.5cm}% Adjust the value to move the chapter title up or down
    #1%
  }{}%
}

已经尝试过了,但没有什么反应。

在此处输入图片描述

答案1

KOMA-Script 类提供此距离的配置,例如

\documentclass[emulatestandardclasses]{scrbook}
\RedeclareSectionCommand[beforeskip=0pt]{chapter}
\begin{document}
\setcounter{chapter}{3}
\chapter{Simulation Results}

\end{document}

在此处输入图片描述

memoir还提供章节的配置选项。

对于标准类,你需要一个类似titlesec或的包补丁\@makechapterhead\@makeschapterhead

对于其他类别,可能会有其他解决方案。

相关内容