eulervm con presentación en xetex con tema metropolis beamer

eulervm con presentación en xetex con tema metropolis beamer

No puedo hacer que el paquete eulervm funcione correctamente en esta presentación del proyector LaTeX (tema metrópolis).

El texto matemático normal obtiene la fuente Fira Sans y símbolos especiales (por ejemplo, el Omega \ohmde SIUnits no se muestra, mientras que $\Omega$sí.

MWE:

% !TEX TS-program = xelatex
% !TEX encoding = UTF-8 Unicode
\documentclass{beamer}

\usetheme{metropolis}                     % Use metropolis theme

\usepackage[UKenglish]{babel}
\usepackage{amsmath}
\usepackage[euler-digits,euler-hat-accent]{eulervm} % after amsmath!
\usepackage{tikz} 
\usepackage{circuitikz}
\usepackage[Gray,squaren,thinqspace,thinspace]{SIunits} % elegant units

\begin{document}

\begin{frame}{Alternative Approach: Ramp Generator}
  \centering
  \begin{circuitikz}
    \draw (0,0) to[R,l=\unit{10}{\kilo\ohm}] ++(2,0);
  \end{circuitikz}

  Euler? $\forall x \in \mathcal{R}$. No!

\end{frame}

\end{document}

Respuesta1

Se solucionó cambiando el paquete SIunits a siunitx (y \unitpor \SI):

\usepackage{siunitx} % elegant units
\sisetup{
    detect-mode,
    group-digits            = false,
    input-symbols           = ( ) [ ] - +,
    table-align-text-post   = false,
    input-signs             = ,
    %%decimalsymbol=comma, %% not needed, as implied by `locale=DE` option
    locale = UK,
    } 

información relacionada