0

Possible Duplicate:
Why does the image not appear?

i am trying to solve my situation with pics here, I am using MUNI template fithesis2, and I have a problem, that including eps picture goes well, but there in none in the final pdf... i will show you the weird thing happening to me...

I have simply this:

\documentclass[12pt,oneside,draft]{fithesis2} 

\usepackage[pdftex]{graphicx}
\usepackage{epstopdf}

\begin{document} 

\begin{figure}[htp]
\centering
\includegraphics[width=\linewidth]{images/upstream.pdf}
\caption{Upstream coverage}
\label{Upstream coverage}
\end{figure}

\end{document}

I compile it with this :

pdflatex --shell-escape thesis.tex

and I am getting this:

image

I am trying to solve it for few hours now and seem to have o solution :( please somebody take a look, maybe its obvious I have no experience with latex

Redrick
  • 103
  • 1
  • 3
  • did you try \includegraphics[width=\linewidth]{images/upstream} without ".pdf" ? – PanAkry Apr 28 '12 at 22:11
  • 1
    Remove [draft] option from the \documentclass. You will get images. Also remove pdftex option from graphicx. –  Apr 28 '12 at 22:20

1 Answers1

4

With draft option many (or all?) classes and packages don't include pictures but a 'dummy picture' with the same size and the file name.

If you omit the draft option you should see your image.

knut
  • 8,838