On LaTeX, if I do \bar{u} in LaTeX, I get this:
Code:
\documentclass[12pt]{article}
\begin{document}
\begin{frame}
$\bar{u}$
\end{frame}
\end{document}
But on Beamer, I get this:
Code:
\documentclass[12pt]{beamer}
\begin{document}
\begin{frame}
$\bar{u}$
\end{frame}
\end{document}
I know that the default font for Beamer is serif, could it be why? Is there a way to realign the bar for Beamer?



\documentclass[12pt]{beamer} \begin{document} \begin{frame} $\bar{u}$ \end{frame} \end{document}– Sebastiano Apr 22 '20 at 21:49