I would like to write my first presentation with beamer, but have encountered problems. I'm using KUbuntu 10.10 with Kile. I can normally create slides without trouble, the problems start, when I try to part the page to put pictures in it. If I try this
Code: Select all
\documentclass{beamer}
\mode<presentation>
\usepackage[utf8x]{inputenc}
\usepackage{default}
\begin{document}
\begin{frame}{Test}
\begin{columns}[c]
\column{2.5cm}
\begin{itemize}
\item One Item
\item Another Item
\end{itemize}
\column{3.5cm}
\framebox{\includegraphics[width=1.5cm]{flower}}
\end{columns}
\end{frame}
\begin{frame}
\begin{columns}[t]
\begin{column}{5cm}
Two\\lines.
\end{column}
\begin{column}{5cm}
One line (but aligned).
\end{column}
\end{columns}
\end{frame}
\end{document}
Can anybody please tell me what's wrong? Thank you!