表格页面溢出图片

表格页面溢出图片

我正在使用表格环境为报告创建图像表。不幸的是,表格不断超出页面边界并进入“空白”,我似乎无法拆分表格并在下一页继续。到目前为止,我尝试使用 Longtable 和 ltablex,但它不断超出页面边界。

以下是我的语法的缩短版本,供参考:

\begin{table}[htbp]
\caption{Cool title\label{tab: cool label}}
\centering
\begin{tabular}{cc}
Image plane & Fourier plane.\footnote{The size of the images has been modified so you can see the Fourier plane. Care was taken to ensure no data was lost}\\
\begin{subfigure}{0.49\textwidth}\centering\includegraphics[width=0.95\columnwidth]{Data/EX4IB.png}\caption{\label{fig:EX4IB}}\end{subfigure}&
\begin{subfigure}{0.49\textwidth}\centering\includegraphics[width=0.95\columnwidth]{Data/EX4FB.png}\caption{\label{fig:EX4FB}}\end{subfigure}\\
\newline
\begin{subfigure}{0.49\textwidth}\centering\includegraphics[width=0.95\columnwidth]{Data/EX4IS.png}\caption{\label{fig:EX4IS}}\end{subfigure}&
\begin{subfigure}{0.49\textwidth}\centering\includegraphics[width=0.95\columnwidth]{Data/EX4FS.png}\caption{\label{fig:EX4FS}}\end{subfigure}\\
\end{tabular}
\end{table}

提前致谢

相关内容