以两列 IEEE 格式并排处理图像和表格时出现问题

以两列 IEEE 格式并排处理图像和表格时出现问题

我想并排添加带有不同标题的图像和表格两列格式文件电气电子工程师学会我试过这个东西,但它对我来说不起作用。要么表格的标题在上方,要么图片的标题在下方。我想将图片和表格的标题对齐在同一区域。

\usepackage{floatrow}

\begin{figure}
\CenterFloatBoxes
\begin{floatrow}
\ttabbox
  {\begin{tabular}{|P{1cm}|P{1.2cm}|P{1.2cm}|}
    \hline
    Steps & MR Execution Time in Seconds & CC Execution Time in Seconds \\ \hline
    1   & 8 & 6   \\ \hline
    2   & 8 & 7    \\ \hline
    3   & 8 & 9    \\ \hline
    4   & 8 & 7    \\ \hline
    5   & 8 & 7    \\ \hline
    6   & 8 & 8    \\ \hline
    7   & 8 & 7    \\ \hline
  \end{tabular}
  }
{\caption{Step-Wise Performance}\label{tab:test}}
\killfloatstyle
\ffigbox
  {\caption{Step-Wise Performance}}
  {\includegraphics[width=5cm]{CG}}

\end{floatrow}
\end{figure} 

正如您在下图中看到的,右侧有表格和图像,但是在对齐方面存在一些问题,所以请帮我修复它。

这是上述编译后的 latex 文件的图像

相关内容