IEEEtrans 中图表和表格并排显示,并带有特定的标题样式

IEEEtrans 中图表和表格并排显示,并带有特定的标题样式

我正在寻找一种解决方案,可以在 IEEEtrans 文档类 (2 列) 中将图形和表格并排放置。每个都应该有自己的标题,因此不能使用 subfloat,并且表格需要具有其特定的 IEEE 标题样式。

感谢您的帮助!

在此处输入图片描述

答案1

您可以并排使用两个 0.45 列宽的小页面。

由于在小页面内不允许使用浮动环境(例如table或),因此应使用和命令而不使用周围的环境。figuretabularincludegraphics

为了指示它是哪种类型的浮点数并提供标题和标签,您可以使用包\captionof中的capt-of(请注意,caption包中也提供了captionof,但该包与不兼容IEEEtran)。

最后,您可以将两个小页面放在一起,放在一个没有标题的浮动框中(例如figure),浮动到顶部,并提供 IEEE 样式指定的一些垂直空间。

梅威瑟:

\documentclass[conference]{IEEEtran}
\usepackage{lipsum}
\usepackage{capt-of}
\begin{document}
\setcounter{table}{1}
\setcounter{figure}{1}
See Figure \ref{fig:redundant} and Table \ref{tab:states}.
\lipsum[1]
\begin{figure}
\begin{minipage}{0.45\columnwidth}
\centering\fbox{this is a figure}
\captionof{figure}{Redundant system $s_t$ with a redundant caption that spans multiple lines}
\label{fig:redundant}
\end{minipage}
\begin{minipage}{0.45\columnwidth}
\centering\fbox{this is a table}
\captionof{table}{Redundancy states of $o_2 \in \mathcal{O}^{\psi_1}_{\phi_1}$}
\label{tab:states}
\end{minipage}
\end{figure}
\lipsum[1-10]
\end{document}

结果:

在此处输入图片描述

相关内容