eulervm com apresentação em xetex com tema metropolis beamer

eulervm com apresentação em xetex com tema metropolis beamer

Não consigo fazer o pacote eulervm funcionar corretamente nesta apresentação do LaTeX beamer (tema metrópole).

O texto matemático normal obtém a fonte Fira Sans e símbolos especiais (por exemplo, o Omega in \ohmdo SIUnits não é exibido, enquanto $\Omega$é.

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}

Responder1

Corrigido alterando o pacote SIunits para siunitx (e \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,
    } 

informação relacionada