about summary refs log tree commit diff stats
path: root/common/latex/preamble/core/math.tex
blob: 35144df338917e010eb8a521b933ce40e4afd713 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
\usepackage{amsmath}  % extensive math commands
\usepackage{amsfonts} % more fonts for math (fracture, boldfaced and so on)
\usepackage{mathtools} % extension to amsmath, with more sensible defaults (eq numbers only when referenced)
\usepackage{amssymb} % more symbols, mostly redundant because already loaded by something else
\usepackage{mathrsfs} % support for the RSFS fonts (through \mathscr command)
\usepackage{cancel} % allows to cancel a part in math mode, for example to shorten a term
\usepackage{bm} % bold mode in math, but better than \boldsymbol command from ams. \bm

% number sets
\NewDocumentCommand\N{}{\ensuremath{\mathbb{N}}}
\NewDocumentCommand\R{}{\ensuremath{\mathbb{R}}}
\NewDocumentCommand\Z{}{\ensuremath{\mathbb{Z}}}
\NewDocumentCommand\Q{}{\ensuremath{\mathbb{Q}}}
\NewDocumentCommand\C{}{\ensuremath{\mathbb{C}}}
\NewDocumentCommand\O{}{\ensuremath{\emptyset}} % replaces the Ø

% readable limits
\let\svlim\lim{}
\renewcommand\lim{\svlim\limits}

% aliases
\let\implies\Rightarrow{}
\let\impliedby\Leftarrow{}

\let\epsilon{\varepsilon} % I like the textual epsilon more