Beamer: transparente Box um Titel Thema ist als GELÖST markiert

Layout von Seiten, Rändern, Fusszeilen, usw, modifizieren


Max

Beamer: transparente Box um Titel

Beitrag von Max »

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?
\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}
vielen Dank schonmal!!

Epllus
Forum-Guru
Forum-Guru
Beiträge: 470
Registriert: So 23. Sep 2012, 17:31

Beitrag von Epllus »

Google ist dein Freund, versuche es hiermit:
\documentclass{beamer} 
\usetheme{CambridgeUS} 
\usepackage{german} 
\usenavigationsymbolstemplate{}%damit Navigationsleiste ausgeblendet ist 
\setbeamercolor{background canvas}{bg=white}%für Titelseite 
\setbeamertemplate{title page}[default]
\setbeamercolor{title}{bg=}
\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} 
Hoffe es hilft
Epllus.

Max

Beitrag von Max »

Hey,
danke für deinen Tipp. Leider ist so die Box um den Titel unsichtbar (transparency 100%?). Ich wollte es so haben, dass die Box etwas durschscheinend ist, damit man das Bild dahinter noch erkennen kann.

Danke schonmal!

Antworten