Fondo de imagen coloreado y opaco en Beamer con cabezal de lámina

Fondo de imagen coloreado y opaco en Beamer con cabezal de lámina

Mi .tex es este

\documentclass[12pt,xcolor={usenames}]{beamer}
\setbeamercovered{transparent}
\setbeamertemplate{caption}[numbered]
\usepackage[spanish,es-tabla,es-nodecimaldot]{babel}
\usepackage[latin1]{inputenc}
\usepackage[T1]{fontenc} 
\normalfont
\usepackage{beamerfoils}
\usepackage{tikz}
\usepackage{graphicx}
\usepackage{courier}
\usefonttheme{serif}

\definecolor{darkturquoise}{rgb}{0.0, 0.81, 0.82}


\beamertemplatetheoremsnumbered
\setbeamerfont{institute}{size=\small}
\title{{\bf\LARGE\color{white}Title Slide}\newline{\bf\color{white}Faculty}\newline{\bf\Large\color{white}Course}}
\author{\bf\color{white}Lecturer
\newline{\scriptsize\href{mailto:[email protected]}{[email protected]}}}
%\titlegraphic{\includegraphics[scale=0.3]{UW_logo}}
\date{}

\setbeamercovered{invisible}

\begin{document}

{\setbeamercolor{background canvas}{bg=darkturquoise}
\maketitle}


\foilhead{Second slide}
No color here

\foilhead{Third slide}
{\setbeamercolor{background canvas}{bg=darkturquoise}
Color here}

\foilhead{Fourth Slide}
\begin{center}
{\Large opaque image here, bluish if possible}
\end{center}
\endfoil
\end{document}

Estoy intentando darle a mi tercera diapositiva el mismo color de fondo que la primera (turquesa oscuro), pero no puedo. Además, me gustaría poner alguna imagen en mi cuarta diapositiva como fondo (diapositiva completa). Además, ¿es posible darle un tinte azulado (turquesa oscuro) al mismo tiempo?

Quizás esta imagen:

ingrese la descripción de la imagen aquí

He visto algunas soluciones, pero foilheadsupongo que no se pueden aplicar al medio ambiente.

Respuesta1

¿Realmente necesitas usar beamerfoils? ¿Por qué no usas el estándar frames? Las cosas están mucho mejor documentadas entonces:

\documentclass[12pt,xcolor={usenames}]{beamer}
\setbeamercovered{transparent}
\setbeamertemplate{caption}[numbered]
\usepackage{tikz}

\definecolor{darkturquoise}{rgb}{0.0, 0.81, 0.82}

\beamertemplatetheoremsnumbered
\setbeamerfont{institute}{size=\small}

\title{\texorpdfstring{
        \textbf{\LARGE\color{white}Title Slide}\newline
        \textbf{\color{white}Faculty}\newline
        \textbf{\Large\color{white}Course}
    }{Title Slide -- Faculty -- Course}
}
\author{\texorpdfstring{
        \textbf{\color{white}Lecturer\newline
        \scriptsize\href{mailto:[email protected]}{[email protected]}}
    }{Lecturer: [email protected]}
}
\date{}

\setbeamercovered{invisible}

\begin{document}

{\setbeamercolor{background canvas}{bg=darkturquoise}
\maketitle}

\begin{frame}{Second slide}
No color here
\end{frame}

{\setbeamercolor{background canvas}{bg=darkturquoise}
\begin{frame}{Third slide}
Color here
\end{frame}}

{\usebackgroundtemplate{
\begin{tikzpicture}[remember picture, overlay]
    \node[at=(current page.center)] {
        \includegraphics[keepaspectratio,
                         width=\paperwidth,
                         height=\paperheight]{example-image-a}
    };
    \fill[darkturquoise!25, blend mode=multiply] (current page.north east) rectangle (current page.south west);
\end{tikzpicture}
}
\begin{frame}{Fourth slide}
{\Large opaque image here, bluish if possible}
\end{frame}}

\end{document}

ingrese la descripción de la imagen aquí

Algunas notas:

  • No utilice \bf, esta macro está en desuso. Úselo \textbfen su lugar.
  • Probablemente sea una buena idea proporcionar una cadena de PDF alternativa para el título y el autor, de modo que se imprima de manera razonable en los metadatos del PDF.
  • En general, es necesario indicar la configuración del color de fondo antes de iniciar el encuadre. Por lo tanto, deberías crear algún alcance usando {}.
  • Finalmente, puedes colocar la imagen y superponerla con un poco de tinte usando TikZ en combinación con \usebackgroundtemplatecomo se muestra en el ejemplo anterior.

Si aún desea seguir con beamerfoils: Dado que configurar el color de fondo implica el alcance, debe finalizar el cuadro relevante explícitamente usando \endfoilo usando la \framemacro. Por lo tanto, esto debería funcionar:

{\setbeamercolor{background canvas}{bg=darkturquoise}
\foilhead{Third slide}
Color here
\endfoil
}

y también:

{\setbeamercolor{background canvas}{bg=darkturquoise}\frame{
\foilhead{Third slide}
Color here
}}

Del mismo modo, puedes hacer:

{\usebackgroundtemplate{
\begin{tikzpicture}[remember picture, overlay]
    \node[at=(current page.center)] {
        \includegraphics[keepaspectratio,
                         width=\paperwidth,
                         height=\paperheight]{example-image-a}
    };
    \fill[darkturquoise!25, blend mode=multiply] (current page.north east) rectangle (current page.south west);
\end{tikzpicture}
}
\foilhead{Third slide}
{\Large opaque image here, bluish if possible}
\endfoil
}

información relacionada