当我使用 kerkis、math 时,如何仅使用 serif 作为 mathfont?

当我使用 kerkis、math 时,如何仅使用 serif 作为 mathfont?

简单来说,我通过图片来解释这个问题,我编写了以下代码:

\documentclass{beamer} 

\usepackage{kmath,kerkis}
\usefonttheme[onlymath]{serif}

...

然后, 在此处输入图片描述

这不是serif。这是某种kerkis+ serif。因此,我只想kerkis, kmath在使用serif数学字体时将其用作文本字体:

在此处输入图片描述

你知道一些方法吗?

答案1

\documentclass{beamer} 

\usefonttheme{professionalfonts}
\usefonttheme[onlymath]{serif}
\usepackage{kerkis}

\begin{document}

\begin{frame}

normal text

\[
    F = ma
\]

\end{frame}

\end{document}

在此处输入图片描述

相关内容