¿Compatibilidad con los comandos de fuentes Beamer y Polyglossa?

¿Compatibilidad con los comandos de fuentes Beamer y Polyglossa?

El siguiente documento funciona bien cuando se usa la clase de documento article:

\documentclass{article}
\usepackage{polyglossia}
\setmainlanguage[variant=british]{english}
\setotherlanguage{hebrew}
\setotherlanguage{greek}
\newfontfamily\hebrewfont{SBL Hebrew}
\newfontfamily\greekfont{SBL Greek}
\begin{document}

\section{First}
A greek word \textgreek{αταραξία} and a hebrew word \texthebrew{קֹהֶלֶת}

\end{document}

Pero luego, cuando cambio a Beamer. Parece comenzar a ignorar las fuentes (y terminamos con caracteres en blanco en lugar del griego o hebreo:

\documentclass{beamer}
\usepackage{polyglossia}
\setmainlanguage[variant=british]{english}
\setotherlanguage{hebrew}
\setotherlanguage{greek}
\newfontfamily\hebrewfont{SBL Hebrew}
\newfontfamily\greekfont{SBL Greek}
\begin{document}

\begin{frame}{First}
A greek word \textgreek{αταραξία} and a hebrew word \texthebrew{קֹהֶלֶת}
\end{frame}

\end{document}

Producción: ingrese la descripción de la imagen aquí

Tenga en cuenta que podemos agregar \setsansfont{Arial}al ejemplo del proyector, y parece indicarle globalmente al proyector que use la Arialfuente, en lugar de las fuentes hebreas/griegas que se han especificado:

ingrese la descripción de la imagen aquí

Respuesta1

\documentclass{beamer}
\usepackage{polyglossia}

\setmainlanguage[variant=british]{english}
\setotherlanguage{hebrew}
\setotherlanguage{greek}

\newfontfamily{\hebrewfontsf}{SBL Hebrew}
\newfontfamily{\greekfontsf}{SBL Greek}
\begin{document}

\begin{frame}{First}

A greek word \textgreek{αταραξία} and a hebrew word \texthebrew{קֹהֶלֶת}

\end{frame}

\end{document}

ingrese la descripción de la imagen aquí

información relacionada