Second, I've been using LaTeX for many years, but I only learn the minimum necessary to accomplish the the task at hand so I'm probably best treated as a novice.
I'm using MikTeX on a Windows 7 computer. In the directory I'm working in are three files: "dum.tex" (the MWE -- see below), "T.eps" and "T.pdf." Both of these last two contain the same image.
When I compile the following using "latex dum.tex" it works fine. T.eps is found and I can view it using yap.
When I try "pdflatex dum.tex" I get no errors and the pdf file is created but there is nothing in it when I try to view it with Adobe Reader.
Here is the relevant part of the log file:
Code: Select all
<T.pdf, id=1, 147.4308pt x 190.7928pt>
File: T.pdf Graphic file (type pdf)
<use T.pdf>
Package pdftex.def Info: T.pdf used on input line 5.
(pdftex.def) Requested size: 147.43044pt x 190.79231pt.
[1{C:/Users/ecb5/AppData/Local/MiKTeX/2.9/pdftex/config/pdftex.map}
Code: Select all
\documentclass{book}
\usepackage{graphicx}
\begin{document}
\includegraphics{T}
\end{document}