I have a little problem: I am not able to put an image in my document. This is how I start:
\documentclass[a4paper,12pt,titlepage]{report}
\usepackage{fontenc}
\usepackage[italian]{babel}
\usepackage[utf8x]{inputenc}
\usepackage{graphicx}
\begin{document}
.
.
.
\begin{figure}[htbp]
\begin{center}
\includegraphics{mol.png}
\end{center}
\label{fig:uno}
\end{figure}
.
.
.
\end{document}
and this is the error report:
ERROR: LaTeX Error: Cannot determine size of graphic in mol.png (no BoundingBox).
--- TeX said ---
See the LaTeX manual or LaTeX Companion for explanation.
Type H <return> for immediate help.
...
l.67 \includegraphics{mol.png}
Some months ago I used the same procedure and it worked.
I even tried to reproduce the .dvi file from the .tex file that I wrote some months ago but today doesn't work.
Another question: how can I produce a .pdf file from a .tex file? I forgot it.
I'm working on debian using emacs
pdflatex source.tex, wheresource.texis your main file (the one that contains your preamble) – Lionel MANSUY Jan 22 '13 at 15:10