我在这个网站上搜索过类似的问题,但只能找到删除每一章空间的答案,而我只想在一章中删除它。 MWE 非常小:)
\documentclass{book}
\begin{document}
\chapter{Chapter 1}
Hello
\chapter{Chapter 2}
Bonjour
\end{document}
我怎样才能删除其中一章上方的空白?
答案1
答案2
David 的答案是正确的,但有点过于复杂。对于所选章节,更简洁的解决方案是使用:
\chapter{\vspace{-5cm}Chapter 2}
进行相应调整vspace{}
。