I am using IEEE TVCG LaTeX Template and would like to insert multiple images next to each other using the following code:
\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}
However, due to the template, the page is divided into two parts and hence the images are not aligned next to each other in a horizontal manner. How can I use the the following code to align the codes next to each other?
Thanks!
Tried 'figure*' environment:
\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*}
But this is not helping as well.
figure*which move figure on the top of the next page from point of its inserting. – Zarko Mar 20 '20 at 19:54