I am getting different results on the shadows beneath the boxes (title page and all others) depending on whether I compile with pfdLaTeX or XeLaTeX. When compiling with pdfLaTeX the shading works as expected, but when compiling with XeLaTeX there is no shading at all, just a solid black background.
My log file just gives me the following errors:
! Missing { inserted. - l.40 \end{frame} ! Missing { inserted. - l.40 \end{frame}
Overfull \hbox (299.25987pt too wide) detected at line 40 [] ! Missing } inserted. }
l.40 \end{frame} ! Missing } inserted. } l.40 \end{frame}
Package pgf Warning: Your graphic driver pgfsys-xetex.def does not support fadings. This warning is given only once on input line 40.
I tried the suggestion given on this thread, with no results.
How should I go about fixing this? Here's my test MWE:
\documentclass{beamer}
\usetheme{Warsaw}
%\usetheme{Copenhagen}
\usepackage{ifxetex}
% LANGUAGE
\ifxetex
\usepackage{fontspec}
\usepackage{polyglossia}
\setmainlanguage{spanish}
\setotherlanguage{english}
\usepackage{xunicode}
\setsansfont[Mapping=tex-text]{Gill Sans MT}
\setmonofont[Mapping=tex-text,Scale=MatchLowercase]{Monaco}
\setromanfont[Mapping=tex-text]{Baskerville}
\else
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\def\spanishoptions{mexico}
\usepackage[spanish]{babel}
\addto\captionsspanish{%
\renewcommand{\contentsname}%
{Contenidos}}
\usepackage{lmodern}
\fi
\title[Short title]{Unusually long version of some generic title}
\subtitle{Important info, though not worthy of title status}
\author{A. U. Thor.}
\date{YYYY-MM-DD}
\institute[Short Institute]{Long form of the institutional name}
\begin{document}
\begin{frame}
\titlepage
\end{frame}
\section{Introduction}
\label{sec:introduction}
\begin{frame}
\frametitle{First slide}
Good stuff!
\end{frame}
\section{Body}
\label{sec:body}
\begin{frame}
\frametitle{Can't jump to conclusions just yet!}
\end{frame}
\end{document}
beamerversion do you have? – Joseph Wright Oct 19 '12 at 12:55beamerto the current release (3.22). – Joseph Wright Oct 19 '12 at 13:04tlmgrkindly requested that I upgrade to TeXLive 2012. I guess I should finally get around to it. I'll tell you how it goes in a few hours. – Ricardo Oct 19 '12 at 13:21beamerfrom CTAN, if you prefer. – Joseph Wright Oct 19 '12 at 13:24