Intro
- I want to spice my title page up by using a fancy background picture.
- Due to a bad contrast (text/picture) the readability is poor.
- I added a background color (
bg =) to the elements of the\titlepage(see MWE).
Questions
- Is it possible to define the background color (
bg =) with a transparency level?- I figured out that
\setbeamertemplate{title page}[default][rounded=true]changes the text boxes but I couldn't add (--> error) transparency (e. g.opacity=0.3).- I do not understand why I need to add
[default]to the\setbeamertemplate{title page}in order to apply therounded=true(I don't need that when setting a color like in\setbeamercolor).- Is it possible to change the
widthof the boxes (other then increasing the margin locally)?
\documentclass[aspectratio=169]{beamer}
\usepackage{graphicx}
\begin{document}
% Define Title Page
\title{Title of Presentation}
\subtitle{Subtitle}
\author{Dr. Manuel Kuehner}
\institute{Where I Work}
\date{\today}
\setbeamercolor{title}{fg=white,bg=black}
\setbeamercolor{subtitle}{fg=white,bg=black}
\setbeamercolor{author}{fg=white,bg=black}
\setbeamercolor{institute}{fg=white,bg=black}
\setbeamercolor{date}{fg=white,bg=black}
\setbeamertemplate{title page}[default][rounded=true]
% Print Title Page
{ % Begin Group
\usebackgroundtemplate{\includegraphics[width=\paperwidth,height=\paperheight]{example-image.png}}%
\begin{frame}[plain]
\titlepage
\end{frame}
} % End Group
\end{document}
Own Partial Solution
By adding \pgfsetfillopacity{0.65} just before the \titlepage command is kind of a manual solution (bus with some problems, see output).
\begin{frame}[plain]
\pgfsetfillopacity{0.65}
\titlepage
\end{frame}

