将图表并排放置在双列格式中

将图表并排放置在双列格式中

我想以 IEEE 2 列格式对齐下图这样的图表

在此处输入图片描述

我试过这个代码但是它将数字上下放置而不是并排放置

\begin{figure}[t]
    \centering
    \begin{minipage}{0.48\textwidth}
        \centering
        \includegraphics[width=\textwidth]{example-image-duck}%{c.PNG} % first figure itself
        \caption{first figure}
    \end{minipage}\hfill
    \begin{minipage}{0.48\textwidth}
        \centering
        \includegraphics[width=\textwidth]{example-image-duck}%{h.PNG} % second figure itself
        \caption{second figure}
    \end{minipage}
\end{figure}

答案1

我看不到您使用的确切文档类和包,但通过使用twocolumn文档类中的选项,scrarctl我按如下方式进行管理

\documentclass[twocolumn]{scrartcl}

\usepackage{mwe}
\usepackage{caption}

\begin{document}
\blindtext[3]
\begin{figure*}[h]
    \centering
    \begin{minipage}{0.48\textwidth}
        \centering
        \includegraphics[width=\textwidth]{example-image-duck}
        \captionof{figure}{first figure}
    \end{minipage}
    \hfill
    \begin{minipage}{0.48\textwidth}
        \centering
        \includegraphics[width=\textwidth]{example-image-duck}
        \captionof{figure}{second figure}
    \end{minipage}
    \par 
    \begin{minipage}{0.48\textwidth}
        \centering
        \includegraphics[width=\textwidth]{example-image-duck}
        \captionof{figure}{third figure}
    \end{minipage}
    \hfill
    \begin{minipage}{0.48\textwidth}
        \includegraphics[width=\textwidth]{example-image-duck}
        \captionof{figure}{fourth figure}
    \end{minipage}
\end{figure*}
\blindtext[3]
\end{document}

图 1 和图 2 并排,图 3 和图 4 也是如此。我只是将 4 个小页面放在一个图中,并用一个 将它们分开\par
生成的 PDF 如下所示 4只鸭子

相关内容