如何在 kpfonts 中使用 \mathsf 或 \symsf

如何在 kpfonts 中使用 \mathsf 或 \symsf

在此处输入图片描述

我们知道字体有一个无衬线数学字体,但是\mathsf\symsf似乎使用 CM 字体。

\documentclass{article}

\usepackage[bold-style=ISO,sans-style=italic]{unicode-math}
\usepackage{kpfonts-otf}

\begin{document}
    Hello world ball, 2022.
    \begin{equation}
        \mathsf{ABC}\symsf{ABC}
    \end{equation}
\end{document}

答案1

字体不同,但使用 sans 字体时可能很难分辨。比较:

在此处输入图片描述

\documentclass{article}

\PassOptionsToPackage{sans-style=italic}{unicode-math}
\usepackage{kpfonts-otf}
\setmathfont{Latin Modern Math}[version=LM]

\begin{document}

Kpfonts:

$\mathsf{ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz}$

$\symsf{ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz}$

Latin modern (default:

\mathversion{LM}
$\mathsf{ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz}$

$\symsf{ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz}$

\end{document}

相关内容