I have already included graphicx package and include
\ifCLASSINFOpdf
\usepackage[pdftex]{graphicx}
% declare the path(s) where your graphic files are
\graphicspath{{../pdf/}{D:\ImagesforProjectLatex}}
% and their extensions so you won't have to specify these with
% every instance of \includegraphics
\DeclareGraphicsExtensions{.pdf,.jpeg,.png}
In the place that I want to insert the image I use the following example.
\begin{figure}[h!]
\centering
\includegraphics[width=0.5\textwidth]{Example}
\caption{A picture of the same gull
looking the other way!}
\end{figure}
I use the "LaTeX => DVI" option. I am a newbie to LATeX, so I do not know the difference between "LaTeX => PDF" and "LaTeX => PS => PDF" My ultimate goal is to convert the document into a pdf file. Any help will be much appreciated.
\ifCLASSINFOpdfis used to do stuff only when you are doing Latex=> pdf and be skipped elsewhere. And most probably it should be followed by a\fiif I remember correctly from the IEEE Transactions class file. So try to use the Latex=>PDF, as most of the commands you use are tailored towards PDF. – percusse May 27 '11 at 00:08/in paths, even on Windows. – Caramdir May 27 '11 at 00:48\graphicspath. – Danie Els May 27 '11 at 01:39Example(i.e. eps/pdf/jpg, etc.)? Are any warning messages shown in the terminal when you compile the document? – Ian Thompson May 27 '11 at 15:35