条形格式不正确

条形格式不正确

在 LaTeX 中,如果我\bar{u}在 LaTeX 中执行此操作,我会得到以下结果:

在此处输入图片描述

代码:

\documentclass[12pt]{article} 
\begin{document} 
     \begin{frame} 
         $\bar{u}$ 
      \end{frame} 
\end{document}

但在 Beamer 上,我得到了这个:

在此处输入图片描述

代码:

\documentclass[12pt]{beamer} 
\begin{document} 
     \begin{frame} 
         $\bar{u}$ 
      \end{frame} 
\end{document}

我知道 Beamer 的默认字体是 serif,这是为什么呢?有没有办法重新调整 Beamer 的栏目?

答案1

使用更新后的 MikTeX 2.9,无论是否有,都不会遇到问题\usepackage{sansmathaccent}

\documentclass{beamer}
\usepackage{sansmathaccent}
\begin{document}
\begin{frame}{}
$\bar{u}$ 
\end{frame}
\end{document}

在此处输入图片描述

相关内容