I have faced one problem. Actually, I'm working on IEEE paper, and they said that I have to convert my .tex files into postscript file
How can I get postscript file? I'm working with WinEdt 8.0 version
Should I convert first my .jpg figures into .eps format by using Photoshop, or it is not necessary step?
For figures, I use the following code:
\begin{figure}
\centering
\includegraphics[scale=0.3, angle=0]{Files/xxx.jpg}
\caption[xxx xxxxxx xxxxx.]{xxx xxxxxx xxxxx.}
\label{fig1}
\end{figure}
Everything work perfect with me .. I can get .pdf file .. But .ps file still I don't how to find it
latex(notpdflatex). Your images have to converted to .ps or .eps using a tool likeImagemagik. You'll get a DVI file which can be converted usingdvips. – Johannes_B Sep 07 '14 at 18:56pdf2psorpdftopsfor this. Not sure about Windows, though. – cfr Sep 07 '14 at 19:07eps, please.epstopdfshould work. – Martin Schröder Sep 08 '14 at 08:10