使用与 San Serif Font 匹配的数学字体

使用与 San Serif Font 匹配的数学字体

如何将公式的字体与 Sans Serif 字体匹配?我使用以下代码。

\documentclass{article}
\usepackage[margin=1in,headheight=5\baselineskip,headsep=1\baselineskip,includehead]{geometry}


\usepackage[scaled, mono=false]{libertine} 
\renewcommand*\familydefault{\sfdefault} %% Only if the base font of the document is to be sans serif
\usepackage[T1]{fontenc}

\begin{document}
\section*{Sans Serif Font along with equation and formula}

\noindent How can I put my equation between dollar signs, e.g., \verb|$E=mc^2$|, and get an output which matches a Sans Serif font? 

\noindent Here is the result of \verb|$E=mc^2$|: $E=mc^2$

\end{document}

这是输出。

在此处输入图片描述

答案1

使用sansmath包裹。

此软件包的目的是在没有合适的无衬线数学字体的情况下提供无衬线数学字体。

该软件包的名称可能会被误解:它的目标是为“非标准” sans 字体(如 的值所示\sfdefault)完成这项工作,但唯一的好结果是使用 Computer Modern 和 cmss。

要使用该包,请将其添加\usepackage{sansmath}到您的序言中,然后\sansmath在您想要切换到无衬线字体时在任何数学环境中使用该命令。

如果您希望将其应用于文档中的每个数学环境,则可以\sansmath在文档序言中使用它。

相关内容