我怎样才能将 concmath 字体用于数学运算并使用 concrete 字体用于罗马运算?

我怎样才能将 concmath 字体用于数学运算并使用 concrete 字体用于罗马运算?

现在我正在使用:

\usepackage{concmath}
\renewcommand{\sfdefault}{qhv}

我并不想使用concrete包,而只想更改 normalfont 和 bf 字体。但它也会更改 mathfont。我该如何更改它以与字体配合使用concmath

答案1

如果只加载文本字体而不处理数学问题,请使用该beton包。

示例输出

\documentclass{article}

\usepackage{beton}

\begin{document}

Some concrete text and normal \( x^2 - y^2 = t \) maths.

\end{document}

请参阅concrete包裹在 CTAN 上。

要切换无衬线字体,我建议您加载适当的包,例如helvet

无衬线字体示例

\documentclass{article}

\usepackage{beton}
\usepackage[scaled=0.92]{helvet}

\begin{document}

Some concrete text and normal \( x^2 - y^2 = t \) maths.

\textsf{Something sans serif.}

\end{document}

相关内容