删除单个章节前的空白

删除单个章节前的空白

我在这个网站上搜索过类似的问题,但只能找到删除每一章空间的答案,而我只想在一章中删除它。 MWE 非常小:)

\documentclass{book}
\begin{document}
\chapter{Chapter 1}
Hello
\chapter{Chapter 2}
Bonjour
\end{document}

我怎样才能删除其中一章上方的空白?

答案1

enter image description here

\documentclass{book}
\begin{document}
\chapter{Chapter 1}
Hello

\makeatletter
\let\savedchap\@makechapterhead
\def\@makechapterhead{\vspace*{-1cm}\savedchap}
\chapter{Chapter 2}
\let\@makechapterhead\savedchap
\makeatletter

Bonjour

\chapter{Chapter 3}

Ol\'a

\end{document}

答案2

David 的答案是正确的,但有点过于复杂。对于所选章节,更简洁的解决方案是使用:

\chapter{\vspace{-5cm}Chapter 2}

进行相应调整vspace{}

相关内容