答案1
如果没有重现问题的 MWE,很难给出详细的解决方案。一般来说,当您想要强制定位图形时,不应使用环境figure
。这不是一个好的做法,但在某些情况下有必要这样做。以下 MWE 尝试重现您的问题,并通过不使用环境来提供解决方案figure
。显然,页面填充还有很多不足之处。
\documentclass{book}
\usepackage{graphicx}
\usepackage{caption}
\newenvironment{myfig}{\medskip\begin{center}}{\end{center}\medskip}
\begin{document}
\appendix
\chapter{Schematics and layouts}
\section{Title}
\begin{myfig}
\includegraphics{example-image-a}
\captionof{figure}{The caption}
\end{myfig}
\clearpage
\begin{myfig}
\includegraphics[width=10cm]{example-image-b}
\captionof{figure}{The caption}
\end{myfig}
\section{Title}
\begin{myfig}
\includegraphics[width=10cm]{example-image-c}
\captionof{figure}{The caption}
\end{myfig}
\end{document}