blob: 2ab583573a263c81144b8428d1b76d64090f9921 (
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
|
\documentclass[tikz]{standalone}
\usepackage{roboto}
\usepackage{roboto-mono}
\usepackage{tikz} % Pretty drawings
\usepackage{tikz-3dplot} % More dimensions!
\usetikzlibrary{
external,
calc,
positioning,
backgrounds,
decorations.pathreplacing,
calligraphy,
decorations.markings,
matrix,
arrows,
patterns,
}
\pgfdeclarelayer{background}
\pgfdeclarelayer{foreground}
\pgfsetlayers{background,main,foreground}
\begin{document}
\include{tikz/overview.tex}
\end{document}
|