现在我正在使用:
\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}