I have bought a new computer, I am running Ubuntu 11.10 and just installed latex on it with
Code: Select all
sudo apt-get install texlive-latex-base
Code: Select all
latex file.tex
Code: Select all
! LaTeX Error: Cannot determine size of graphic in \unhbox\voidb@x \penalty \@M
\ {}/img.eps (no BoundingBox).
Code: Select all
%%BoundingBox: 46 169 550 673
Below is a MWE and I also attached the img file. I'm not sure how anyone can help as the MWE does work on another machine. Anyway, any advice welcome!
Code: Select all
\documentclass{article}
\usepackage{graphicx} % for figures
\begin{document}
\graphicspath{{~/Mypath/}}
\begin{figure}[!H]
\includegraphics[scale=0.8, angle= -90]{img.eps}
\end{figure}
\end{document}