同一页面中两个旋转表格会浪费空间

同一页面中两个旋转表格会浪费空间

我正在使用该IEEEtran样式撰写一篇论文,该样式每页使用两列。

有时候,我必须制作三张大桌子,所以我常常\sideways旋转它们。

页面的高度填满了所有可用空间,其中一个页面单独填满了整个页面,但其中两个页面很薄,我可以(也应该)将两个页面放在同一个页面中。我正在定义我的第一个表格(填满整个页面的表格),如下所示:

\begin{table*}[h]
  \centering
  \caption{Performance of Second Based Operators applied to the clown image.}
  \label{tab:sodclown}  
  \begin{sideways}
      \begin{tabular}{ cccccccc }
      ...
      Sobel & \raisebox{-\totalheight}{\includegraphics[height=0.2\textwidth]{figs/colorbar2}}
            & \raisebox{-\totalheight}{\includegraphics[width=0.2\textwidth]{figs/Clown/MSE/Sobel}} 
      ...
  \end{tabular}
  \end{sideways}
\end{table*}

这给了我这个结果(只是其中的一部分):

在此处输入图片描述

同一页面中的两个表定义如下:

\begin{table*}[h]
   \begin{minipage}{.5\textwidth}
      \centering
      \caption{Performance of Second Based Operators applied to the bike image.}
      \label{tab:sodbike}  
      \begin{sideways}
         \begin{tabular}{ cccccccc }
         ...
         \shortstack{Four-neighbor\\ Laplacian} 
         & \raisebox{-\totalheight}{\includegraphics[height=0.3\textwidth]{figs/colorbar2}} 
         & \raisebox{-\totalheight}{\includegraphics[width=0.3\textwidth]{figs/Clown/MSE/Laplacian1}} 
         ...
         \end{tabular}
      \end{sideways}
   \end{minipage}  
   \begin{minipage}{.5\textwidth}
      \centering
      \caption{Performance of Second Based Operators applied to the clown image.}
      \label{tab:sodclown}  
      \begin{sideways}
          \begin{tabular}{ cccccccc }
          ...
          \end{tabular}
      \end{sideways}
   \end{minipage}%
\end{table*}

结果如下:

在此处输入图片描述

可以看出,表格线和图像之间有相当大的黑色空间,这阻止了我的图像变大。我想知道是什么导致了这个结果,我该如何摆脱它,这样我的有用空间就会扩大,从而我的图像也会扩大。唯一的区别是我\shortstack在第二个表格环境中使用。

相关内容