Document Classes ⇒ graphics on slides with beamer
graphics on slides with beamer
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}
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- Stefan Kottwitz
- Site Admin
- Posts: 10397
- Joined: Mon Mar 10, 2008 9:44 pm
graphics on slides with beamer
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