我想要一个全页表格,表格后面是两张全页图片。但是图片总是出现在表格之前。
如果我尝试使用 FloatBarrier,它最终会在表格后产生分页符,并在两张图片之前产生空白页。我该怎么做才能让两张图片都出现在表格后面?我编写的代码如下:
\begin{landscape}
\begin{table}[!htb]
(table content here...)
\end{table}
\FloatBarrier
\includegraphics[width=\linewidth]{Picture 1}
\includegraphics[width=\linewidth]{Picture 2}
\end{landscape}
我没有将这两张图片放在一个图形块内,因为我不想列出它们。
答案1
仅当您为图像提供标题时,图像才会列出,如果您在table
环境中放置它们,则三项的顺序将会保持不变。