I'm compiling a beamer presentation with the fourier font set, and the result shows a dot instead of the greek character \Omega. I have found that other people had the same problem here and here, but even after I put
\documentclass[xcolor={dvipsnames,table}, fleqn]{beamer}
\usefonttheme{professionalfonts}
I still get the dot. I tried to get a MWE and then I realized that when commenting the line
\usepackage{breqn}
which is used to break long equations, the problem was solved. Do you know what's causing this behavior? Can it be fixed so I can still use the breqn package?
MWE:
\documentclass{beamer}
\usefonttheme{professionalfonts}
\usepackage{fourier}
\usepackage{breqn} % break equations
\begin{document}
\begin{frame}
$\Omega$
\end{frame}
\end{document}

breqnisn't compatible withfourier(orfouriernc). – campa Nov 15 '23 at 12:14\usepackage{fourier} \usepackage{breqn}
\begin{document}
\begin{frame} [ \Omega ] \end{frame}
\end{document}
– samcarter_is_at_topanswers.xyz Nov 15 '23 at 12:47\usefonttheme{professionalfonts}. – aaragon Nov 15 '23 at 12:51