I try to put an image in columns environment inside a block environment in beamer.
Somehow my image is shifting outside the block.
Here's an example
\documentclass{beamer}
\usetheme{Darmstadt}
\begin{document}
\begin{frame}{Problem}
\begin{block}{look at that}
\begin{columns}
\begin{column}{.4\textwidth}
\rule{.3\textwidth}{.3\textwidth}
\end{column}
\begin{column}{.6\textwidth}
Nothing of great importance
\end{column}
\end{columns}
\end{block}
\end{frame}
\end{document}
I tried an ugly hack with a flushright environment around the image, however then the image is shifting downwards which only looks slightly better.
(How) can this be solved?
1.1\textwidth. Makes no sense here. – Herbert Jun 27 '12 at 9:01\textwidthis not\linewidth! – Paul Gaborit Jun 27 '12 at 16:08