空白圖形環境中的空白

空白圖形環境中的空白

我正在嘗試更改單頁文件的下邊距。我查看了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}

相關內容