welcome: please sign in

Revision 9 as of 2019-01-11 18:28:34

Clear message
location: Computer / Latex / FontAlternatives

LaTeX Font Alternatives

Fourier

This font group uses an Adobe Utopia clone for the text font and a specially designed math font called Fourier for the maths.

%%%%%%%%%%%%%%%%%%% fourier, for pdflatex and luatex %%%%%%%%%
\usepackage{fourier}  
\usepackage[matchlowercase]{tgheros}
\usepackage{dsfont}\AtBeginDocument{\let\mathbb=\mathds}
\DeclareMathAlphabet{\mathcal}{OMS}{cmsy}{m}{n}
\usepackage[mono,narrow,varl,varqu,scale=0.96]{inconsolata}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

FourierNC

This font group uses New Century Schoolbook (TeX Gyre Schola) as the text font and Fourier as the maths font.

%%%%%%%%%%%%% fouriernc, for pdflatex and lualatex %%%%%%%%%%%%%%%
\usepackage{fouriernc}
\usepackage[matchlowercase,oldspacing]{tgschola}
\usepackage[matchlowercase]{tgheros}
\usepackage{dsfont} \AtBeginDocument{\let\mathbb=\mathds}
\DeclareMathAlphabet{\mathcal}{OMS}{cmsy}{b}{n}
\usepackage[mono,narrow,varl,varqu,scale=0.98]{inconsolata}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%