Does anyone know why the following code doesn't compile?
Code: Select all
\documentclass{beamer}
\usetheme{Madrid}
\usecolortheme{structure}
\title{The Title}
\author{Author, A.}
\institute{Institute}
\begin{document}
\begin{frame}
\titlepage
\end{frame}
\section{The First Section}
\begin{frame}{My Frame}
\begin{itemize}
\item Some content.r
\item Another content.
\end{itemize}
\end{frame}
\end{document}
\usecolortheme{structure}
all compiles perfectly. I don't understand why the "structure" color theme causes the problem. The error I get is
Code: Select all
ERROR: Package xcolor Error: Undefined color `beamer@structure@color'.
Bests,