I have a Beamer presentation with note pages, in which everything renders just fine with pdflatex.
However, when the file is compiled using xelatex (I need to use fontspec), texts in frames after a note page are not visible -- they are rendered in white colour. This problem is reproducible when using Beamer v3.33.
%% Compile with xelatex
\documentclass[handout]{beamer}
\mode<handout>
{
\setbeameroption{show notes}
\RequirePackage{pgfpages}
\pgfpagesuselayout{2 on 1}[a4paper,border shrink=5mm]
}
\begin{document}
\begin{frame}
A test, A test!
\note{ }
\end{frame}
\begin{frame}
This text does not appear!
\note{ }
\end{frame}
\end{document}
While this problem can be solved by compiling with lualatex, I'm wondering if there's any thing one can do to make it work for xelatex?

fragileoption as such \begin{frame}[fragile] ... \end{frame}. – Jesse Nov 20 '14 at 09:47