Beamer: transparente Box um Titel
Verfasst: Fr 11. Jan 2013, 13:49
Hey, ich sitze schon seit längerem vor dem Problem, dass ich gerne die Titelbox (also dort wo der Titel drin steht) transparent haben will (50%) damit dahinter das Hintergrundbild zu sehen ist.
Weiß jemand wie ich das am besten anstelle?
vielen Dank schonmal!!
Weiß jemand wie ich das am besten anstelle?
\documentclass{beamer} \usetheme{CambridgeUS} \usepackage{german} \usenavigationsymbolstemplate{}%damit Navigationsleiste ausgeblendet ist \setbeamercolor{background canvas}{bg=white}%für Titelseite \usepackage{tikz}%für transparente Hintergründe \begin{document} \title[Cyclic Triaxial Testing]{Cyclic Triaxial testing of marine sands providing index parameters for hypoplastic constants} \author{Max} \date{\today} { \setbeamertemplate{background canvas}{ \begin{tikzpicture} \node(0,0)[opacity=0.3]{\includegraphics[width=\paperwidth,height=\paperheight]{bilder/title1.jpg}}; \end{tikzpicture} }%to add backgound to titlepage with certain transparancy \setbeamertemplate{title page}[default][colsep=-4bp,rounded=true]%to remove shadow around title \begin{frame}[plain] \titlepage \end{frame} } \end{document}