I want to typeset math in different font called Antykwa Torunska, which supports maths. Unfortunately, when using it in beamer the math font is switched to the standard math font of beamer. How can I change this behaviour?
Here is a minimal example:
\documentclass{beamer}
% Mathekram:
\usepackage{amssymb, amstext, amsmath}
% Font:
\usepackage[math]{anttor}
\usepackage[T1]{fontenc}
\begin{document}
\begin{frame}{Testframe}
This is fine: 1234567890, \textit{x}, \textit{p}, \textit{t}\\
This is not fine: $1234567890$, $x$, $p$, $t$
\end{frame}
\end{document}
When I change beamer to article it works fine.
