
Lo sabemosfuentes kptiene una fuente matemática sans-serif, pero \mathsf
y \symsf
parecen usar fuentes 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}
Respuesta1
Las fuentes son diferentes, aunque puede ser difícil saberlo con fuentes sin fuentes. Comparar:
\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}