After a recent TeX Live update, I'm unable to compile my beamer files with XeLaTeX. I get the following error:
Code: Select all
Latex Error: /usr/local/texlive/2012/texmf-dist/tex/latex/hyperref/puenc.def:1591
Missing \begin{document}.
See the LaTeX manual or LaTeX Companion for explanation.
Type H <return> for immediate help.
...
l.1591 \DeclareTextCommand[\textBeam}{P
U}{\9043\223}%* U+2393
This doesn't happen with (pdf)latex. Here's a MWE:
Code: Select all
\documentclass{beamer}
\usetheme{Copenhagen}
\usepackage{fontspec}
\begin{document}
\begin{frame}
Some text
\end{frame}
\end{document}

doonyakka