0

I wanted to make a background on each of my slides on a Beamer presentation, and this link did exactly what I needed: Background image in beamer slides And this works perfectly, except for the first slide. I only want my background for my slides with content, but not the Title slide. Does anyone know if there is a way to disable the setbeamertemplate{background} for the first slide only? Thank you

Ryan L
  • 23
  • Just put \setbeamertemplate{background}{<settings>} after the first slide. Not an elegant solution, sorry. Look also at this https://tex.stackexchange.com/a/142989/231952 – Ivan May 22 '21 at 23:36
  • @Ivan This worked great, thanks! – Ryan L May 23 '21 at 19:41

1 Answers1

1

Your information what you after are very general, so there is only one example (based on answer on question creating-title-page-in-latex-beamer) how you can do this:

\documentclass{beamer}
\usetheme{Dresden}
\usecolortheme{beaver}

\author{K} \title{Title} \date{\today}

\setbeamercolor{title}{bg=}

\begin{document}

\begin{frame}[plain] % exception of frame style \titlepage \end{frame}

\begin{frame} \frametitle{Frame with content} \begin{itemize} \item \item\end{itemize} \end{frame}

\end{document}

Zarko
  • 296,517