-
Notifications
You must be signed in to change notification settings - Fork 1
/
header-matplotlib.tex
44 lines (39 loc) · 1.2 KB
/
header-matplotlib.tex
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
% unverzichtbare Mathe-Befehle
\usepackage{amsmath}
% viele Mathe-Symbole
\usepackage{amssymb}
% Erweiterungen für amsmath
\usepackage{mathtools}
% Fonteinstellungen
\usepackage{fontspec}
% Latin Modern Fonts werden automatisch geladen
\usepackage[
math-style=ISO, % ┐
bold-style=ISO, % │
sans-style=italic, % │ ISO-Standard folgen
nabla=upright, % │
partial=upright, % ┘
warnings-off={ % ┐
mathtools-colon, % │ unnötige Warnungen ausschalten
mathtools-overbracket, % │
}, % ┘
]{unicode-math}
% traditionelle Fonts für Mathematik
\setmathfont{Latin Modern Math}
\setmathfont{XITS Math}[range={scr, bfscr}]
\setmathfont{XITS Math}[range={cal, bfcal}, StylisticSet=1]
% Zahlen und Einheiten
\usepackage[
locale=DE, % deutsche Einstellungen
separate-uncertainty=true, % immer Unsicherheit mit \pm
per-mode=reciprocal, % ^-1 für inverse Einheiten
output-decimal-marker=., % . statt , für Dezimalzahlen
]{siunitx}
% chemische Formeln
\usepackage[
version=4,
math-greek=default, % ┐ mit unicode-math zusammenarbeiten
text-greek=default, % ┘
]{mhchem}
% schöne Brüche im Text
\usepackage{xfrac}