I'd like to use TeX Gyre Schola as my text font and the default LaTeX font for the math mode. (Side question: is the default font Latin Modern in math mode or another font?)
MWE:
\documentclass[fleqn]{scrartcl}
\usepackage{tgschola}
\usepackage[T1]{fontenc}
\begin{document}
This is some text.
\[ F_\mathrm{D} = m \ddot z = b \lambda \rho \frac{I}{P_0} \vec{c} \]
Sadly, the math is less thick than the text.
\end{document}
While both look great on their own, IMHO, the drawback is that the math font is much more "thin" or less "thick" than the text font.
Is there a way to keep this math font and make it slightly thicker, but not bold, with pdfLaTeX?


unicode-mathor any math font package, then Computer Modern will be used, which doesn't really match with New Century Schoolbook. You could try\usepackage{fouriernc}– egreg Apr 21 '13 at 22:34fourier+tgscholalooks a lot different fromfouriernc(both in text and in math). I liketgscholamuch more. But the "officially" matchingfourierhas some rather big spaces on some sub- and superscript combinations that look rather strange without lots of manually tweaking. That's why I wanted to try something different. – Foo Bar Apr 22 '13 at 06:58