一页中有两幅跨页图

一页中有两幅跨页图

我正在使用 acm 模板,有两个需要跨越两列的图形。我将它们按如下方式放置:

\begin{figure*}
    \begin{subfigure}
        \includegraphics{fig1} % size is 6.4cm x 4cm
        \subcaption{title1}
    \end{subfigure}
    ~~~~
    \begin{subfigure}
        \includegraphics{fig2}
        \subcaption{title2}
    \end{subfigure}
    ~~~~
    \begin{subfigure}
        \includegraphics{fig3}
        \subcaption{title3}
    \end{subfigure}
    \caption{caption of this figure}
\end{figure*}
\begin{figure*}
    \begin{subfigure}
        \includegraphics{fig4}
        \subcaption{title4}
    \end{subfigure}
    ~~~~
    \begin{subfigure}
        \includegraphics{fig5}
        \subcaption{title5}
    \end{subfigure}
    ~~~~
    \begin{subfigure}
        \includegraphics{fig6}
        \subcaption{title6}
    \end{subfigure}
    \caption{caption of this figure}
\end{figure*}

但即使一页中有足够的空间容纳这两个图,它也会将它们放在两个不同的页面上。我怎样才能将它们放在一页中?

答案1

请始终提供完整的测试文档,但是如果您删除

\end{figure*}
\begin{figure*}

从示例的中间开始,留下一行空白,整个结构将始终作为一个单元浮动。(但标题为两个数字)。

相关内容