Sorry for the obvious noob error in posting ^^
The pdflatex not finding png files is fixed (probably some updates in the meantime...).
I still have the landscape environment problem.
Using pdflatex, using the following image:
http://en.wikibooks.org/wiki/File:Chick1.png
here is the mwe:
Code: Select all
\documentclass{report}
\usepackage[a4paper]{geometry}
\usepackage[english]{babel}
\usepackage[utf8]{inputenc}
\usepackage{changepage,setspace}
\usepackage{pdflscape,graphicx,booktabs,float,caption, subfigure}
\captionsetup{font=footnotesize,labelfont=bf,singlelinecheck=false}
\captionsetup[table]{position=above,skip=0pt}
\usepackage{amsmath,amssymb}
\begin{document}
\begin{figure}
\begin{landscape}
Some text in landscape.
\includegraphics[scale=0.5]{Chick1}
\end{landscape}
\end{figure}
Some text not in landscape.
\end{document}
Using latex, and the following image:
http://www.bittbox.com/wp-content/uploa ... ht.eps.zip
Here is the mwe:
Code: Select all
documentclass{report}
\usepackage[a4paper]{geometry}
\usepackage[english]{babel}
\usepackage[utf8]{inputenc}
\usepackage{changepage,setspace}
\usepackage{lscape,graphicx,booktabs,float,caption, subfigure}
\captionsetup{font=footnotesize,labelfont=bf,singlelinecheck=false}
\captionsetup[table]{position=above,skip=0pt}
\usepackage{amsmath,amssymb}
\begin{document}
\begin{figure}
\begin{landscape}
Some text in landscape.
\includegraphics[scale=0.5]{logo}
\end{landscape}
\end{figure}
Some text not in landscape.
\end{document}
There is two cases:
either I don't specify the use of lscape (should be automatic since included in graphicx, but I noticed it is not loaded) and the landscape environement is not loaded
either I specify it (as in the mwe), and the whole page is in landscape, which is not what I want.
Thanks