I have following code simply testing I can insert an image. I got the error message basically says:
! Package
pdftex.defError:'eps-converted-to.pdf'not found
I googled a little bit
- I have an image beer-lambert.eps in the folder of
C:/Users/tsui/writing/chapter_1/figures/ - There does not seem to be any space in the path
I don't understand, because I have another LaTeX project, that simply does not have such a problem. So I assume my setup on my MikTex (Windows 10) is correct?
Following is my code.
\documentclass[12pt]{report}
\usepackage{graphicx}
\usepackage{epstopdf}
\begin{document}
\begin{figure}
\centering
\includegraphics[scale=0.4]{C:/Users/tsui/writing/chapter_1/figures/beer-lambert}
\caption{caption}
\label{fig_beer_lambert}
\end{figure}
\end{document}
Update:
I change the code, as Ruben suggested, to simplify the problem. Now the .eps image is in the same folder as the .tex file, but it still gives the same
'eps-converted-to.pdf' not found
error:
\documentclass[journal]{IEEEtran}
\usepackage{graphicx}
\usepackage{epstopdf}
\begin{document}
\includegraphics[scale=0.4]{sinogram.eps}
\end{document}
\includegraphics[scale=0.4]{beer-lambert.eps}withbeer-lampert.epsbeeing in the same folder as you.texfile – Ruben Feb 18 '18 at 22:33\includegraphics[scale=0.4]{sinogram.eps}and also\includegraphics[scale=0.4]{sinogram}. Does it work with\includegraphics[scale=0.4]{example-image}? – Bobyandbob Jun 19 '18 at 07:21