Graphics, Figures & Tables ⇒ Missing figures with pdflatex
-
- Posts: 6
- Joined: Thu Jan 20, 2011 6:22 pm
Missing figures with pdflatex
Here is relevant code:
\usepackage[dvipdfm]{graphicx}
\includegraphics[width=0.9\textwidth]{figure_1a.eps}
I have also tried
\includegraphics[bb=0 0 446 459,scale=0.5]{figure_1a.eps}
and
\includegraphics[bb=0 0 446 459,scale=0.5]{figure_1a}
but it makes no difference
Everything else seems to be working fine.
Suggestions for what I should change will be very welcome.
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
Missing figures with pdflatex
It is possible to do this automatically too:
Code: Select all
\documentclass{book}
\usepackage[pdftex]{graphicx}
\usepackage{epstopdf}
\begin{document}
\includegraphics[width=0.9\textwidth]{figure_1a}
\end{document}
Missing figures with pdflatex
if you still have trouble, search the forums, there are dozens of threads about this.
(Somehow I missed meho's post. Not sure how.)