答案1
您可以并排使用两个 0.45 列宽的小页面。
由于在小页面内不允许使用浮动环境(例如table
或),因此应使用和命令而不使用周围的环境。figure
tabular
includegraphics
为了指示它是哪种类型的浮点数并提供标题和标签,您可以使用包\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}
结果: