`\documentclass{standalone}` で採用されているデフォルトのフォントを `\documentclass[beamer]{standalone}` で使用するにはどうすればいいですか?

`\documentclass{standalone}` で採用されているデフォルトのフォントを `\documentclass[beamer]{standalone}` で使用するにはどうすればいいですか?

\documentclass{standalone}で採用されているデフォルトのフォント(中国語と英語の両方)を使用するにはどうすればよいです\documentclass[beamer]{standalone}か?


を使用すると\documentclass{standalone}、フォントは次のようになります。

スタンドアロンフォント

\documentclass{standalone}
\usepackage{xeCJK}

\begin{document}
  是什么 Semantics
\end{document}

を使用すると\documentclass[beamer]{standalone}、フォントは次のようになります。

スタンドアロンビーマーフォント

\documentclass[beamer]{standalone}
\usepackage{xeCJK}

\begin{document}
\begin{frame}{Frame title}
  是什么 Semantics
\end{frame}
\end{document}

答え1

デフォルトではbeamerサンセリフ フォントを使用しますが、serifフォント テーマを読み込んで変更できます。

\documentclass[beamer]{standalone}
\usepackage{xeCJK}
\usefonttheme{serif}

\begin{document}
\begin{frame}{Frame title}
  是什么 Semantics
\end{frame}
\end{document}

ここに画像の説明を入力してください

関連情報