Alinhamento horizontal de gráficos IEEE

Alinhamento horizontal de gráficos IEEE

estou usandoModelo LaTeX IEEE TVCGe gostaria de inserir várias imagens próximas umas das outras usando o seguinte código:

\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}

Porém, devido ao template, a página é dividida em duas partes e por isso as imagens não ficam alinhadas uma ao lado da outra na horizontal. Como posso usar o código a seguir para alinhar os códigos um ao lado do outro?

Obrigado!

Tentei o ambiente 'figura *':

\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*}

Mas isso também não está ajudando.

Responder1

Você pode usar o figure*ambiente para abranger a figura em ambas as colunas.

informação relacionada