Graphics, Figures & Tables ⇒ Missing figures with pdflatex
-
- Posts: 8
- 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.
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
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.)