blob: 8ca78f2d7f35b087b8630a3ef2b6c3623e64d196 (
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
\documentclass{article}
\usepackage[
a4paper,
includehead,
headheight=12pt,
headsep=1mm,
landscape,
margin=0.8cm
]{geometry}
\usepackage{multicol}
\setlength{\columnsep}{0.5cm}
\usepackage{fancyhdr}
\renewcommand{\headrulewidth}{0pt}
\usepackage[x11names]{xcolor}
\usepackage[skip=-10pt plus1pt]{parskip}
\usepackage{titlesec}
\titlespacing*{\section}{0pt}{-2pt}{0pt} % {<left>}{<before-sep>}{<after-sep>}
\titlespacing*{\subsection}{0pt}{-6pt}{0pt}
%\usepackage{noto}
\usepackage{graphicx}
\addtolength{\topmargin}{-0.4cm}
\pagenumbering{gobble}
\renewcommand{\familydefault}{\sfdefault}
\raggedcolumns
%% Styling
% Layouts
\newcommand{\shortcut}[2]{\small #1: \desc{#2}\\}
% Colors
\newcommand{\clboth}[1]{\textcolor{Green4}{#1}}
\newcommand{\cldtii}[1]{\textcolor{DarkGoldenrod1}{#1}}
\newcommand{\clstkt}[1]{\textcolor{VioletRed2}{#1}}
\newcommand{\clparam}[1]{\textcolor{DarkOrchid4}{#1}}
\newcommand{\clfaded}[1]{\textcolor{Snow4}{#1}}
% Semantics
\newcommand{\desc}[1]{\clfaded{#1}}
\newcommand{\knob}[1]{\textit{#1}}
\newcommand{\param}[1]{\textbf{\clparam{#1}}}
\newcommand{\keyboth}[1]{\clboth{#1}}
\newcommand{\keydtii}[1]{\cldtii{#1}}
\newcommand{\keystkt}[1]{\clstkt{#1}}
\begin{document}
\pagestyle{fancy}
\fancyhead[L]{\scshape Elektron Cheatsheet v1.0}
\fancyhead[R]{\scshape Digitakt II OS1.15A – Syntakt OS1.30}
\begin{multicols*}{3}
\include{front.tex}
\pagebreak
\include{back.tex}
\end{multicols*}
\end{document}
|