diff options
| author | Paul Jungeblut <paul.jungeblut@gmail.com> | 2016-10-05 23:56:16 +0200 |
|---|---|---|
| committer | Paul Jungeblut <paul.jungeblut@gmail.com> | 2016-10-05 23:56:16 +0200 |
| commit | b585d932530f755e80829bfc5d28d97b5afe1e15 (patch) | |
| tree | d31a09d47ad83ccc22bb884a5841ee08ed97f93d /latexHeaders/math.tex | |
| parent | 691fdec875864a589bc57aadca25a98cc8fd9ab8 (diff) | |
Restructuring main latex file.
Diffstat (limited to 'latexHeaders/math.tex')
| -rw-r--r-- | latexHeaders/math.tex | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/latexHeaders/math.tex b/latexHeaders/math.tex new file mode 100644 index 0000000..5d75f58 --- /dev/null +++ b/latexHeaders/math.tex @@ -0,0 +1,58 @@ +% Display math. +\usepackage{amsmath} +\usepackage{mathtools} +\usepackage{amssymb} + +% New enviroment for remarks. +\newtheorem{bem}{Bemerkung} + +% New commands for math operators. +% Binomial coefficients. +\renewcommand{\binom}[2]{ + \biggl( + \begin{matrix} + #1 \\ + #2 + \end{matrix} + \biggr) +} +% Euler numbers, first kind. +\newcommand{\eulerI}[2]{ + \biggl\langle + \begin{matrix} + #1 \\ + #2 + \end{matrix} + \biggr\rangle +} +% Euler numbers, second kind. +\newcommand{\eulerII}[2]{ + \biggl\langle + \negthinspace + \biggl\langle + \begin{matrix} + #1 \\ + #2 + \end{matrix} + \biggr\rangle + \negthinspace + \biggr\rangle +} +% Stirling numbers, first kind. +\newcommand{\stirlingI}[2]{ + \biggl[ + \begin{matrix} + #1 \\ + #2 + \end{matrix} + \biggr] +} +% Stirling numbers, second kind. +\newcommand{\stirlingII}[2]{ + \biggl\{ + \begin{matrix} + #1 \\ + #2 + \end{matrix} + \biggr\} +} |
