如何将 3 个数字排列在 ieee 的两列中

如何将 3 个数字排列在 ieee 的两列中

如何将 3 个数字排列在表格的两列中,如下所示:

\begin{figure}[!htb]
%\tabcapfont
\centerline{%
\begin{tabular}{c@{}c@{}c}
\includegraphics[width=1.6in]{fig1.eps} &
\includegraphics[width=1.9in]{fig2.eps} &
\includegraphics[width=1.4in]{fig3.eps} \\
a.~~ Octal linked list & b.~~ Quadratic linked list & c.~~Dual linked list
\end{tabular}}
\caption{The representation of a pixel using linked lists}\label{figure}
\end{figure}

答案1

对于宽浮动内容(如您的情况),使用星号形式 - 设置浮动figure*。这会将其设置在下一页的顶部。

在此处输入图片描述

\documentclass{ieeetran}
\usepackage{lipsum,graphicx}
\title{A title}
\author{An author}
\begin{document}

\maketitle

\lipsum[1-8]

\begin{figure*}
  \centering
  \begin{tabular}{c c c}
  \includegraphics[width=1.6in]{example-image-a} &
  \includegraphics[width=1.9in]{example-image-a} &
  \includegraphics[width=1.4in]{example-image-a} \\
  a.~Subcaption A & b.~Subcaption B & c.~Subcaption C
  \end{tabular}
  \caption{A caption}
\end{figure*}

\lipsum[1-9]

\end{document}

在双栏环境中,对大型文档元素的放置几乎没有控制权,因此上述方法可能是您的最佳选择。此外,对于期刊投稿,他们将在编辑过程中主要处理文档结构,以便它也符合其他投稿。

相关内容