I realize that I should use latex and not pdflatex to compile my tex file when I have eps figures in it. However, with beamer while making a presentation, my eps figures aren't showing up at all.
Strangely all jpeg images are though! I have checked my path and it is correct.
Here is my slide where the eps figure is:
\documentclass{beamer}
\usepackage{graphicx}
\usepackage{subfigure}
\usepackage{eps2pdf}
\usepackage{amsmath}
\usepackage[labelformat=empty]{caption}
\usetheme{CambridgeUS}
\begin{document}
\frame{
\frametitle{This is my slide title}
\begin{figure}
\begin{center}
\includegraphics[scale=0.25]{/home/user/Research/epsfigure_without_extension}
\caption{Wavenumber k=1}
\end{center}
\end{figure}
}
\end{document}
epstopdfpackage or batch-convert your EPS files, e.g. via inscape (inkscape --export-pdf=output.pdf input.eps), and then compile with PdfLaTeX. – Jörg Oct 25 '12 at 9:33ps2pdfon my images but the trouble is my eps images are actuallycollagecollections done viacollagein unix so they don't convert to pdfs right. – drN Oct 25 '12 at 9:34