IEEE 2 列格式中多个图形跨越一列

IEEE 2 列格式中多个图形跨越一列

我只是关注这个在双栏页面上,图表跨度为一栏 在双栏页面上跨越图形,但不同之处在于,我不是粘贴一个图形,而是需要在这里放置两个和三个图形。

这是跨越两列粘贴图形的代码

\documentclass[twocolumn]{article}
\usepackage{lipsum}% http://ctan.org/pkg/lipsum
\usepackage[demo]{graphicx}% http://ctan.org/pkg/graphicx
\begin{document}
\section{First section}
\lipsum[1-2]
\section{Second section}
\lipsum[3]
\begin{figure*}
  \includegraphics[width=\textwidth]{figure}
  \caption{This is a figure caption}
\end{figure*}
\lipsum[4]
\section{Last section}
\lipsum[5-10]
\end{document}

我也想这样做,但我不想要一个数字,而是想要两个和三个数字。我试过了,但没有用。有人能帮忙吗?

 \begin{figure*}
  \includegraphics[width=\textwidth]{1.PNG}
  \caption{This is a figure caption}
  \includegraphics[width=\textwidth]{2.PNG}
  \caption{This is a figure caption}
\end{figure*}

参见图中的明确要求。 在此处输入图片描述

请尝试提供帮助,而不是发表评论说已经有人回答了。现有的问题对我没有帮助,所以我才发布此帖。

答案1

我根据以下floatrow方案提出了此解决方案:

\documentclass[twocolumn]{article}
\usepackage{lipsum}
\usepackage{graphicx}
\usepackage{floatrow}
\DeclareFloatSeparators{Qquad}{\hskip4em}

\begin{document}

\section{First section}
\lipsum[1-2]

\section{Second section}
\lipsum[3]
\begin{figure*}

\floatsetup{floatrowsep=Qquad}
\begin{floatrow}
  \ffigbox[\FBwidth]{\caption{Ralph Steadman. Illustrations for \emph{Alice in Wonderland}}\label{Alice-Ralph}}{\includegraphics[scale=0.4]{AliceSteadman}}
\ffigbox[\FBwidth]{\caption{Yuri Norstein. \emph{Hedgehog in the fog}}\label{Hedgehog}}{\includegraphics[scale=0.5]{Hedgehog-in-the-fog}}\hskip4em
\ffigbox[\FBwidth]{\caption{Max Ernst. \emph{Euclid}}\label{Ernst}}{\includegraphics{Euclid}}
\end{floatrow}
\end{figure*}
\lipsum[4]

\section{Last section}
\lipsum[5-10]

\end{document} 

在此处输入图片描述

相关内容