-
Notifications
You must be signed in to change notification settings - Fork 1
/
preample.tex
58 lines (47 loc) · 1.28 KB
/
preample.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
% General stuff. The idea is that this preample can also be used to
% compile each chapter separately.
\usepackage[utf8]{inputenc}
\usepackage{ntheorem}
\usepackage{amsmath}[ntheorem]
\usepackage{mathtools}
\usepackage{amsfonts}
\usepackage{thmtools}
\usepackage{booktabs}
\input{notation.tex}
\usepackage[table]{xcolor}
\usepackage{caption}
\usepackage{subcaption}
\usepackage{graphicx}
\usepackage{todonotes}
\usepackage{url}
\usepackage{hyperref}
\usepackage{cleveref}
\usepackage{couriers}
\usepackage{listings}
\lstset{basicstyle=\ttfamily}
% Teach cleveref about listings.
\crefname{lstlisting}{listing}{listings}
\Crefname{lstlisting}{Listing}{Listings}
\newtheorem{definition}{Definition}[chapter]
\newtheorem{theorem}{Theorem}[chapter]
\newtheorem{corollary}[theorem]{Corollary}
\newtheorem{example}{Example}[chapter]
% Tikz stuff
\usepackage{tikz}
\usetikzlibrary{calc}
\usetikzlibrary{shapes.multipart}
\usetikzlibrary{shapes.arrows}
\usetikzlibrary{chains}
\usetikzlibrary{arrows}
\usetikzlibrary{matrix}
\usetikzlibrary{arrows.meta}
\usetikzlibrary{intersections}
\usetikzlibrary{cd}
\usetikzlibrary{fit}
\usetikzlibrary{backgrounds}
\usetikzlibrary{decorations.pathreplacing}
\setsecnumdepth{subsubsection}
%%% Local Variables:
%%% mode: latex
%%% TeX-master: "hpps-notes"
%%% End: