I have tried this code below and got images on a document like image 2 (the colorful one). I want to place quite visible side by side images like picture 1 (black and white image) on top of the page in double-column format. how can i achieve this? anyone here to help?
\begin{figure}%
\centering
\subfloat[]{{\includegraphics[width=3cm]{aq.PNG} }}%
\qquad
\subfloat[]{{\includegraphics[width=3cm]{aq.PNG} }}%
\caption{zzzzzzzzzzzzzzzzzzzzzz}%
\label{fig:example}%
\end{figure}
\begin{figure}%
\centering
\subfloat[]{{\includegraphics[width=3cm]{aq.PNG} }}%
\qquad
\subfloat[]{{\includegraphics[width=3cm]{aq.PNG} }}%
\caption{xxxxxxxxxxxxxxxxxxxxxxxxxxxx}%
\label{fig:example}%
\end{figure}
I followed this Two figures side by side but its not working in my case as I am using 2 column format IEEE template
\documentclass{article}
\usepackage{lipsum}
\usepackage{mwe}
\begin{document}
\begin{figure}
\centering
\begin{minipage}{0.45\textwidth}
\centering
\includegraphics[width=0.9\textwidth]{c.PNG} % first figure itself
\caption{first figure}
\end{minipage}\hfill
\begin{minipage}{0.45\textwidth}
\centering
\includegraphics[width=0.9\textwidth]{h.PNG} % second figure itself
\caption{second figure}
\end{minipage}
\end{figure}
\end{document}




\documentclass{}and end with\end{document}so everyone will be able to figure out exactly what’s going on – Luis Turcio May 25 '21 at 00:28\begin{document}
\begin{figure} \centering \begin{minipage}{0.45\textwidth} \centering \includegraphics[width=0.9\textwidth]{cc.PNG} % first figure itself \caption{first figure} \end{minipage}\hfill \begin{minipage}{0.45\textwidth} \centering \includegraphics[width=0.9\textwidth]{ac.PNG} % second figure itself \caption{second figure} \end{minipage} \end{figure} \end{document}
– user12 May 25 '21 at 01:39\documentclass{IEEEtran}. Even though it does not come with the TeXLive installation it's not hard to find the class. 2. I tried with IEEEtran and using\begin{figure*}seemed to have solved the problem neatly (as Zarko suggests in his answer).