我正在使用新加坡主题,但我想更改默认错误。我如何更改字体/排版以使演示/框架看起来更美观/更专业?
答案1
使用xelatex
或 运行lualatex
\documentclass{beamer}
\usetheme{Singapore}
\usefonttheme{professionalfonts}
\usepackage{unicode-math}
\setsansfont{Verdana}
\setmathfont{XITS Math}
\begin{document}
\begin{frame}{foo}{bar}
Some text with the Verdana font
\[ y=f(x)=\int_1^\infty \frac1x \mathrm{d}x \]
\end{frame}
\end{document}