我有一个很长的 LaTeX 脚本来制作一个文档,其中大部分部分都有三个数字,它们非常适合页面。在一些随机部分中,我们有六或九个数字。因此,页面将不适合这些额外的数字,它们将覆盖在页面的底部。
如何自动强制最后三个数字出现在单独的页面上,而无需手动调整每个部分?(换句话说,一种使清除页面自动完成的方法)。
我正在寻找类似于longtable 的东西——允许表在页面边界环境中流动以自动控制流动。
以下是常规和随机情况的示例:
***Regular case***
\begin{figure}[b!]
\centering
\includegraphics[width =\textwidth]{Path/A.png}
\includegraphics[width =\textwidth]{Path/B.png}
\includegraphics[width =\textwidth]{Path/C.png}
\end{figure}
\clearpage
***Random case***
\begin{figure}[b!]
\centering
\includegraphics[width =\textwidth]{Path/E.png}
\includegraphics[width =\textwidth]{Path/F.png}
\includegraphics[width =\textwidth]{Path/G.png}
\includegraphics[width =\textwidth]{Path/H.png}
\includegraphics[width =\textwidth]{Path/I.png}
\includegraphics[width =\textwidth]{Path/J.png}
\includegraphics[width =\textwidth]{Path/K.png}
\includegraphics[width =\textwidth]{Path/L.png}
\end{figure}
\clearpage