通过空图形环境留出空白

通过空图形环境留出空白

geometry我正在尝试更改文档中某一页的底部边距。我查看了与该软件包等相关的各种帖子,但尚未找到满足我需求的解决方案。(请参阅使用 fancyhdr 增加章节第一页的页码

如果我只是添加一个

\documentclass{report}

\begin{document}

\chapter{first}
\begin{figure}[b!]
\end{figure}

\end{document}

在该页面的开头(紧接着\chapter{}),是否能够实现我想要的。

有没有办法不使用 来控制该图形的高度\includegraphics[]{}?或者另一个环境可以让我在页面底部放置可控制高度的空白?具体来说,让它比上面的代码更小?

答案1

\vspace图内使用。

% marginprob.tex  SE 569697
\documentclass{book}
\usepackage{lipsum}
\begin{document}
\chapter{First}
\begin{figure}[b!]
\vspace{1in} % adjust this to suit, negative to reduce the whitespace
\end{figure}

\lipsum[1-5]

\lipsum[1-5]

\end{document}

相关内容