如何在 `\documentclass[beamer]{standalone}` 中使用 `\documentclass{standalone}` 采用的默认字体?

如何在 `\documentclass[beamer]{standalone}` 中使用 `\documentclass{standalone}` 采用的默认字体?

如何使用 所采用的默认字体(中文和英文)\documentclass{standalone}\documentclass[beamer]{standalone}


使用\documentclass{standalone},字体如下:

独立字体

\documentclass{standalone}
\usepackage{xeCJK}

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

使用\documentclass[beamer]{standalone},字体如下:

独立 Beamer 字体

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

在此处输入图片描述

相关内容