0

I don't know why, but the \Psi char displayed in beamer is different from the Psi in usual tex files:

what I want/have in classic tex files:

enter image description here

What I have in Beamer:

enter image description here

Thank you!

MWE:

\documentclass[]{beamer}
\begin{document}
\begin{frame}{Title}
  $\Psi$
\end{frame}
\end{document}
tobiasBora
  • 8,684
  • 1
    Beamer uses as default a sans-serif font. Search for how to use serif fonts in beamer. – Sigur Apr 20 '18 at 13:28

1 Answers1

3

If you want to use this few times, you can do $\mathrm{\Psi}$. But, if you want to use serif fonts in whole document, use

\usefonttheme{serif}

As pointed out by Medina in this answer you can use serif fonts only in math mode using the option

\usefonttheme[onlymath]{serif}

enter image description hereenter image description here

Sigur
  • 37,330