On Wed, Sep 02, 2009 at 02:27:48PM +0200, QUINTIN Guillaume wrote: > latex-beamer gives me very strange results when I want to insert some > graphics. > I spent as much time on making latex works as writing my report. > And latex-beamer is giving me as much pain. > > \documentclass{beamer} > \usepackage[french]{babel} > \usepackage[utf8]{inputenc} > \usetheme{Warsaw} > > \title{blabla} > \author{dontcare} > \institute{someinstitute} > > \begin{document} > > \begin{frame} > \includegraphics[height=3in]{info.pdf} > \end{frame} > > \end{document}
I don't know if this will help with your problem, but this should probably look more like: \documentclass[dvipsnames,table]{beamer} \usepackage{euler} \usepackage[cm-default,quiet]{fontspec} \usepackage{xunicode} \usepackage{xltxtra} \mode<presentation> {\usetheme{Warsaw} \setbeamercovered{transparent}} \title{blabla} \author{dontcare} \institute{someinstitute} \begin{document} \begin{frame} \includegraphics[height=3in]{info} \end{frame} \end{document} Note that you're not supposed to provide an extension to filenames in \includegraphics statements. Also, if you want UTF8 support, it's best to use xelatex instead of pdflatex with babel/inputenc. Much less hacky and painful.