-
Notifications
You must be signed in to change notification settings - Fork 0
/
Base.tex
59 lines (44 loc) · 1.09 KB
/
Base.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
59
% Other preambles
\input{preamble/Environments.tex}
\input{preamble/Fonts.tex}
\input{preamble/Github.tex}
\input{preamble/Listings.tex}
% Filler text for layouts
\usepackage{lipsum}
% Link to urls
\usepackage{url}
% Cite references
\usepackage{cite}
% Build a glossary of acronyms
\usepackage{acronym}
% TODO: Describe
\usepackage{amsmath}
% Include figures and graphics
\usepackage{graphicx}
% Wide pages
\usepackage[margin=2cm]{geometry}
% Draw vector graphics
\usepackage{tikz}
\usetikzlibrary{shapes,arrows}
% Format enumerate and itemize commands
\usepackage[inline]{enumitem}
\setitemize{noitemsep,topsep=4pt,parsep=4pt,partopsep=4pt}
\setenumerate{noitemsep,topsep=4pt,parsep=4pt,partopsep=4pt}
% Todo notes
\usepackage[obeyFinal]{easy-todo}
% Make pretty tables using \top- \mid- and \bottomrule, etc.
\usepackage{booktabs}
% Show directory trees
\usepackage{dirtree}
% Example:
% \dirtree{%
% .1 spam.
% .2 ham.
% .2 eggs.
% .3 more spam.
% }
% Import this last
% Turns references into hyperlinks
\usepackage{hyperref}
% Remove the indentation for new paragraphs
\setlength{\parindent}{0pt}