如何在图形和标题之间插入分页符?

如何在图形和标题之间插入分页符?

是否可以插入分页符或将图片标题放在下一页。图片太大,图片和标题无法放在一页上。

\begin{figure}
\centering
\includegraphics[width=1\textwidth]{Figure.pdf}
\caption{caption} 
\label{label}
\end{figure}

之前使用\clearpage或不起作用。\pagebreak\caption

干杯

答案1

由于您已经加载了caption包,您可以按如下方式进行:

\begin{figure}[p] % this "float" will reside on a floats-only page
\centering
\includegraphics[width=1\textwidth]{Figure.pdf}
% note: no \caption and \label for now
\end{figure}
\clearpage % insert a page break
\captionof{figure}{caption} 
\label{label}

为了在标题和页面上的其余材料之间创建一些明确的视觉分离,您可以插入如下\hrule\bigskip说明\label


话虽如此,你确定有必要将图片文件显示得这么大,以至于标题无法在同一页上显示吗?例如,你可以尝试写

\includegraphics[height=0.9\textheight]{Figure.pdf}

这应该在页面上提供足够的剩余空间,以允许在该页面上排版标题。

相关内容