]> gitweb.michael.orlitzky.com - mjotex.git/blob - mjo-font.tex
Put \ifx guards on most other package includes, too.
[mjotex.git] / mjo-font.tex
1 %
2 % Font handling that you probably want to use everywhere.
3 %
4 \ifx\havemjofont\undefined
5 \def\havemjofont{1}
6
7
8 % Allow arbitrary font sizes (prevents pdflatex warnings).
9 \usepackage{lmodern}
10
11 % Support utf8 in LaTeX code. This lets you enter names like
12 % Carathéodory and Güler directly, without the funny escape sequences.
13 \usepackage[utf8]{inputenc}
14
15 % Grab the AMS fonts, too, for things like \mathbb.
16 \ifx\mathbb\undefined
17 \usepackage{amsfonts}
18 \fi
19
20 \fi