IEEE Con​​f 带标题的子图

IEEE Con​​f 带标题的子图

我正在用文档类创建一个乳胶项目IEEE 通讯

\documentclass[letterpaper, 10 pt, conference]{ieeeconf} 

我需要包含一些带有子图的图形,类似于这篇关于定位图像的文章(即,一个图形有多个子图像,每个子图像都有自己的标题编号 a、b 等)并且整个图像有另一个标题: 带有 2 个子图的图像,每个子图都带有子标题,并且整个图像带有标题

但是,由于我使用的是 ieeeconf documentclass,如果我尝试使用 subcaption 包(如上面的链接中所推荐的)或 subfig 包(如我在其他地方所推荐的),我会收到警告错误。

这里应使用哪个正确的包?

答案1

将图像设置在tabular

在此处输入图片描述

\documentclass{IEEEconf}

\usepackage{lipsum,graphicx}

\begin{document}

\lipsum[1]

\begin{figure}
  \centering
  \begin{tabular}{ c @{\hspace{20pt}} c }
    \includegraphics[width=.3\columnwidth]{example-image-a} &
      \includegraphics[width=.3\columnwidth]{example-image-b} \\
    \small (a) &
      \small (b)
  \end{tabular}

  \medskip

  \caption{A figure caption}
\end{figure}

\end{document}

图像之间的间距在列规范\hspace{20pt}中使用 进行设置tabular。此外,子图编号使用 进行设置\small,图像与主图标题之间的跳跃使用\medskip(大小为 的垂直跳跃\medskipamount)。

相关内容