Beamer 및 Polyglossa 글꼴 명령 호환성?

Beamer 및 Polyglossa 글꼴 명령 호환성?

다음 문서는 문서 클래스를 사용할 때 제대로 작동합니다 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}

하지만 Beamer로 전환하면. 글꼴을 무시하기 시작한 것 같습니다(그리고 결국 그리스어나 히브리어 대신 공백 문자가 표시됩니다.

\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}

산출: 여기에 이미지 설명을 입력하세요

비머 샘플에 추가할 수 있으며 지정된 히브리어/그리스어 글꼴 대신 \setsansfont{Arial}비머에게 글꼴을 사용하도록 전체적으로 지시하는 것 같습니다 .Arial

여기에 이미지 설명을 입력하세요

답변1

\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}

여기에 이미지 설명을 입력하세요

관련 정보