I'm gonna place 4 figures in a page, where 2 figures will be at the top of each column and the rest will be located at the bottom of two columns, just like image below:
But I have no clear idea to set the positioning options for those figures.
Here is a MWE (I'd just used t and b, which is not leading to target formation):
\documentclass{IEEEtran}
\usepackage{lipsum}
\usepackage{graphicx}
\begin{document}
\begin{figure}[t]
\centering
\includegraphics[width=2in]{image}
\caption{up-left}
\end{figure}
\lipsum[1-5]
\begin{figure}[t]
\centering
\includegraphics[width=2in]{image}
\caption{bottom-left}
\end{figure}
\lipsum[1-5]
\begin{figure}[b]
\centering
\includegraphics[width=2in]{image}
\caption{up-right}
\end{figure}
\lipsum[1-5]
\begin{figure}[b]
\centering
\includegraphics[width=2in]{image}
\caption{bottom-left}
\end{figure}
\end{document}
Could you give me some advice in this case?


topnumberandbotnumberto 1 so you don't get them stacked – David Carlisle Nov 13 '16 at 23:46