[Tex/LaTex] Change Math fonts

fonts

I am trying to change the standard Latex fonts to TexGyreSchola for the entire document. I have done so successfully for the main text by including

\usepackage{tgschola}
\usepackage[T1]{fontenc}

in the preamble. However, I have not been able to change the math counterpart. If anyone has some experience on this, I would appreciate it very much.

Best Answer

The fouriernc package provides a set of math fonts compatible with New Century Schoolbook.

\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage{fouriernc}
\usepackage{tgschola}

\begin{document}

A formula $a=b-c+\sqrt{2}$

\textit{italic} 123
\end{document}

enter image description here

Since TeX Gyre Schola is at a size slightly bigger than fouriernc, it's better to scale the text font down (see Problem combining fouriernc with tgschola)

\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage{fouriernc}
\usepackage[scale=0.92]{tgschola}

\begin{document}

A formula $a=b-c+\sqrt{2}$

\textit{italic} 123$123$

\end{document}

enter image description here