强制将图形放置在特定页面的顶部

强制将图形放置在特定页面的顶部

我需要将图像 ( compression_strain_map.pdf) 强制置于特定页面的顶部(文档有两列),并将文本置于其下方。它似乎只适用于一列。

在此处输入图片描述

以下是我使用的代码:

\begin{figure}[tp]
\centering
\begin{tabular}{rl}
\includegraphics[scale=0.6, trim={0cm 1cm 0.75cm 0cm}, clip]{images/compression_strain_map.pdf}&\raisebox{4cm}{\rotatebox{90}{\textit{local Lagrangian vertical strain}}} 
\end{tabular}
\caption{Local Lagrangian vertical strain fields with the corresponding absolute values of the global strain $\left|\varepsilon\right|$ for a pure compression test.}
\label{fig:compression_strain_maps}
\end{figure}

问题是,当我使用\begin{figure*}图形时,图形放在下一页,但我想强制将图形放在这一页上。

谢谢您的任何建议。

答案1

figure是单列,figure*是双列跨度,将其在源中较早地移动,以便它出现在您想要的页面上。

相关内容