\documentclass[final]{IEEEtran} %-- make sure you have IEEE style file
                                %   IEEEtran.cls in the directory

\pagestyle{empty} %-- prevents page numbers
\usepackage{times,amsfonts,amsmath}
\usepackage[]{graphicx}

%-- optional packages

%-- include if you use pstricks
% \usepackage{pstricks,pst-node}

%-- include if you use subfigure
% \usepackage[normal,tight,center]{subfigure}
% \setlength{\subfigcapskip}{-.5em}

\begin{document}

%-- example of a standard figure. (you could just use convert make an eps from
%   a standard image, but keeping them in this file makes things easier
\begin{figure}
  \centering
  \includegraphics[width=.31\columnwidth]{just_an_image}\\
\end{figure}\clearpage %-- clearpage at the end ensures one figure per page

%-- example of using subfigure.  Note that we set the subfigure counter to 0
%   at the begining.  Without this the sub-figure's won't reset
\begin{figure}\setcounter{subfigure}{0}
  \centering
  \subfigure[Thing]{\includegraphics[width=.32\columnwidth]{some_image}}
  \subfigure[Action]{\includegraphics[width=.32\columnwidth]{some_other_image}}
  \subfigure[Result]{\includegraphics[width=.32\columnwidth]{last_image}}
\end{figure}\clearpage %-- clearpage at the end ensures one figure per page

%-- example of a PSTricks figure.  begin the PSTricks environment within the
%   figure so that things like \centering still work correctly.
\begin{figure}
   \centering
   \begin{pspicture}
     %-- PStricks codes
   \end{pspicture}
\end{figure}\clearpage %-- clearpage at the end ensures one figure per page

\end{document}


