Dear Users,
I have a question about presentations with beamer. It's the first time I work with Latex, so I hope this question is not too stupid. Everytime I insert a graph it produces the graph + the parts of the path of the graph on the slide.
I want the graph on the slide, but of course not the path where the graph is saved on my harddisk. Can anyone help me out?
Thanks, Kai
\begin{frame}
\frametitle{Entwicklung des Panels (I/II)}
\begin{figure}
\centering
\includegraphics[width=1.00\textwidth]{C:/Dokumente und Einstellungen/Desktop//1.JPG}
\end{figure}
\end{frame}
Document Classes ⇒ graphics on slides with beamer
NEW: TikZ book now 40% off at Amazon.com for a short time.

- Stefan Kottwitz
- Site Admin
- Posts: 10348
- Joined: Mon Mar 10, 2008 9:44 pm
graphics on slides with beamer
Hello Kai,
welcome to the board!
Try to use \includegraphics without spaces inside the file name. I would even recommend to use a relative path, for instance just if you put 1.JPG into the same directory where your tex document is located.
Stefan
welcome to the board!
Try to use \includegraphics without spaces inside the file name. I would even recommend to use a relative path, for instance just
Code: Select all
\includegraphics[width=1.00\textwidth]{1.JPG}
Stefan
LaTeX.org admin