blob: facdf3e9e83ff675079af4d92eeeddaa79bbe4c6 (
plain)
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
|
% Common libs
% ------------------
% Used font
\usepackage{anttor}
\usepackage[utf8]{inputenc}
\usepackage{iftex}
% TODO: investigae if we need those
\ifluatex
\usepackage{fontspec}
\else
\usepackage[T1]{fontenc}
\fi
% optischer Randausgleich
\usepackage{microtype}
\usepackage{graphicx}
\usepackage{color}
\usepackage{tikz}
\usetikzlibrary{patterns}
\usetikzlibrary{shadows}
\usetikzlibrary{fit, calc} % for getnodedim macro
\usepackage{etoolbox}
\usepackage{xparse} % for getnodedim macro
\usepackage{csquotes}
\usepackage{bm} % bold font in math mode
% symbols
\usepackage{fourier-orns}
% \usepackage{amssymb} % Rsh
\usepackage{fontawesome5} % Bolt used for spells
\usepackage{skak} % Chess symbols used for the Unit symbol
|