IEEE グラフの水平配置

IEEE グラフの水平配置

使っていますIEEE TVCG LaTeX テンプレート次のコードを使用して、複数の画像を並べて挿入したいと考えています。

\begin{figure}[h]
    \centering

    \begin{minipage}{0.45\textwidth}
        \centering
        \includegraphics[width=0.9\textwidth]{universe} % first figure itself
        \caption{Universe}
    \end{minipage}\hfill
    \begin{minipage}{0.45\textwidth}
        \centering
        \includegraphics[width=0.9\textwidth]{figure} % second figure itself
        \caption{Bar Plot}
    \end{minipage}

\end{figure}

しかし、テンプレートのせいでページが 2 つの部分に分割されているため、画像が水平方向に並んでいません。次のコードを使用してコードを隣り合わせにするにはどうすればよいでしょうか?

ありがとう!

'figure*' 環境を試しました:

\begin{figure*}[h]
    \centering
    \begin{minipage}{0.45\textwidth}
        \centering
        \includegraphics[width=0.9\textwidth]{LeNet_300_Accuracy} % first figure itself
        \caption{LeNet 300-100-10 Training \& Testing Accuracy}
    \end{minipage}\hfill
    \begin{minipage}{0.45\textwidth}
        \centering
        \includegraphics[width=0.9\textwidth]{LeNet_300_Loss} % second figure itself
        \caption{LeNet 300-100-10 Training \& Testing Loss}
    \end{minipage}

\end{figure*}

しかし、これも役に立ちません。

答え1

figure*代わりに環境を使用して、図を両方の列にまたがって表示することもできます。

関連情報