Marie-Régine
unread,Jul 6, 2010, 4:36:29 PM7/6/10Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to LaTeX Beamer class
Hello,
I need to add a watermark to my beamer slides. Using a background
image works well, except that it doesn't shine through blocks when
they are "rounded". I suspect the issue may be in beamerbaseboxes, but
I do not understand the code, so I can't fix the problem :-( Anybody
have a hint for me?
MR
\documentclass{beamer}
\usetheme{Goettingen}
\setbeamertemplate{items}[ball]
\setbeamertemplate{blocks}[rounded][shadow=true]
% \setbeamertemplate{blocks}[shadow=true] % Works ok
\usepackage{graphicx}
\usebackgroundtemplate{\includegraphics[width=\linewidth]{draft}}
\begin{document}
\begin{frame}
Lorem ipsum dolor sit amet, consectetur adipisici elit, sed eiusmod
tempor incidunt ut labore et dolore magna aliqua. Ut enim ad minim
veniam, quis nostrud exercitation ullamco laboris nisi ut aliquid ex
ea commodi consequat.
\end{frame}
\begin{frame}
\begin{block}{}
Lorem ipsum dolor sit amet, consectetur adipisici elit, sed
eiusmod tempor incidunt ut labore et dolore magna aliqua. Ut enim ad
minim veniam, quis nostrud exercitation ullamco laboris nisi ut
aliquid ex ea commodi consequat.
\end{block}
\end{frame}
\end{document}