-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.tex
187 lines (167 loc) · 6.9 KB
/
style.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
% Kodierung, Sprache, Patches
\usepackage[T1]{fontenc} % Ausgabekodierung; ermöglicht Akzente und Umlaute
% sowie korrekte Silbentrennung.
\usepackage[utf8]{inputenc} % Erlaubt die direkte Eingabe spezieller Zeichen;
% utf8 muss die Eingabekodierung des Editors sein.
\usepackage[english]{babel} % Englische Sprachanpassungen (z.B. Überschriften).
\usepackage{microtype} % Optimale Randausrichtung und Skalierung.
\usepackage[
autostyle,
]{csquotes} % Korrekte Anführungszeichen in der Literaturliste.
\usepackage{scrhack} % Verhindert Warnungen mit älteren Paketen.
\usepackage[
newcommands
]{ragged2e} % Verbesserte \ragged...Befehle
\PassOptionsToPackage{
hyphens
}{url} % Sorgt für URL-Umbrüche in Fußzeilen u. Literatur
% Schriftarten
\usepackage{mathptmx} % Times; modifies the default serif and math fonts
\usepackage[scaled=.92]{helvet}% modifies the sans serif font
\usepackage{courier} % modifies the monospace font
% Biblatex
\usepackage[
style=alphabetic,
backend=biber,
%backref=true
]{biblatex} % Biblatex mit alphabetischem Style und biber.
%\bibliography{\jobname.bib} % Dateiname der bib-Datei.
\DeclareFieldFormat*{title}{
\mkbibemph{#1} % Make titles italics
}
% Dokument- und Texteinstellungen
\usepackage[
a4paper,
margin=2.54cm,
marginparwidth=2.0cm,
footskip=1.0cm
]{geometry} % Ersetzt 'a4wide'.
\clubpenalty=10000 % Keine Einzelzeile am Beginn eines Absatzes
% (Schusterjungen).
\widowpenalty=10000 % Keine Einzelzeile am Ende eines Absatzes
\displaywidowpenalty=10000 % (Hurenkinder).
\usepackage{floatrow} % Zentriert alle Floats
\usepackage{ifdraft} % Ermöglicht \ifoptionfinal{true}{false}
\pagestyle{plain} % keine Kopfzeilen
% \sloppy % großzügige Formatierungsweise
\deffootnote{1em}{1em}{
\thefootnotemark.\ } % Verbessert Layout mehrzeiliger Fußnoten
\makeatletter
\AtBeginDocument{
\hypersetup{
pdftitle = {\@title},
pdfauthor = \@author,
}
}
\makeatother
% Weitere Pakete
\usepackage{graphicx} % Einfügen von Graphiken.
\usepackage{tabu} % Einfügen von Tabellen.
\usepackage{multirow} % Tabellenzeilen zusammenfassen.
\usepackage{multicol} % Tabellenspalten zusammenfassen.
\usepackage{booktabs} % Schönere Tabellen (\toprule\midrule\bottomrule).
\usepackage[nocut]{thmbox} % Theorembox bspw. für Angreifermodell.
\usepackage{amsmath} % Erweiterte Handhabung mathematischer Formeln.
\usepackage{amssymb} % Erweiterte mathematische Symbole.
\usepackage{rotating}
\usepackage[
printonlyused
]{acronym} % Abkürzungsverzeichnis
\usepackage[
colorinlistoftodos,
textsize=tiny, % Notizen und TODOs - mit der todonotes.sty von
\ifoptionfinal{disable}{}% Benjamin Kellermann ist das Package "changebar"
]{todonotes} % bereits integriert.
\usepackage[
breaklinks,
hidelinks,
pdfdisplaydoctitle,
pdfpagemode = {UseOutlines},
pdfpagelabels,
]{hyperref} % Sprungmarken im PDF. Lädt das URL-Paket.
\urlstyle{rm} % Entfernt die Formattierung von URLs.
% Direktes Einfügen von Dateiinhalt. Wird hier für Verwendung
% einer .bib-Datei in dieser .tex-Datei benötigt.
%\usepackage{filecontents}
%\usepackage{breakurl}
%\def\UrlBreaks{\do\/\do-}
\usepackage{listings} % Spezielle Umgebung für Quelltextformatierung.
\lstset{
language=C,
breaklines=true,
breakatwhitespace=true,
frame=l, % Linie links: l, doppelt: L
framerule=2.5pt, % Dicke der Linie
rulecolor=\color{gray},% Farbe der Linie
captionpos=b,
xleftmargin=6ex,
tabsize=4,
numbers=left,
numberstyle=\ttfamily\footnotesize,
basicstyle=\ttfamily\footnotesize,
keywordstyle=\bfseries\color{green!50!black},
commentstyle=\itshape\color{magenta!90!black},
identifierstyle=\ttfamily,
stringstyle=\color{orange!90!black},
showstringspaces=false,
}
% CUSTOM
\usepackage{enumitem} % Used for description layout.
\usepackage{wrapfig} % Allows wrapping text around figures and tables.
\usepackage{tabularx}
\usepackage[page,toc,title]{appendix} % Appendices
\usepackage{pdflscape} % Landscape
\usepackage{siunitx} % Formats numbers and (SI) units: https://ctan.org/pkg/siunitx
\sisetup{
round-mode = places,
round-precision = 2
}
% Normal spacing between sentences.
\frenchspacing
% Capitalize chapter/section/subsection references.
\addto\extrasenglish{
\def\chapterautorefname{Chapter}
\def\sectionautorefname{Section}
\def\subsectionautorefname{Subsection}
}
\renewcommand{\lstlistlistingname}{List of Listings}
\def\minline{\lstinline[language={},keywordstyle={},commentstyle={},identifierstyle={},stringstyle={}]}
\lstdefinelanguage{JavaScript}{
keywords={typeof, new, true, false, try, function, return, null, catch, switch, var, const, let, if, in, while, do, else, case, break},
ndkeywords={class, export, boolean, throw, implements, import, this},
sensitive=false,
comment=[l]{//},
morecomment=[s]{/*}{*/},
morestring=[b]',
morestring=[b]",
morestring=[b]`,
numberstyle=\ttfamily\footnotesize,
basicstyle=\ttfamily\footnotesize,
keywordstyle=\bfseries\color{green!50!black},
ndkeywordstyle=\color{darkgray}\bfseries,
commentstyle=\itshape\color{magenta!90!black},
identifierstyle=\ttfamily,
stringstyle=\color{orange!90!black},
showstringspaces=false,
}
\lstdefinelanguage{CSP}{
alsodigit={-},
keywords={child-src, connect-src, default-src, font-src, frame-src, img-src, manifest-src, media-src, object-src, prefetch-src, script-src, script-src-elem, script-src-attr, style-src, style-src-elem, style-src-attr, worker-src, base-uri, sandbox, form-action, frame-ancestors, navigate-to, report-uri, report-to, require-sri-for, require-trusted-types-for, trusted-types, upgrade-insecure-requests, block-all-mixed-content, plugin-types, referrer },
ndkeywords={none, self, strict-dynamic, report-sample, unsafe-inline, unsafe-eval, unsafe-hashes, unsafe-allow-redirects, sha256-, sha384-, sha512-, nonce- },
otherkeywords={;},
sensitive=false,
numberstyle=\ttfamily\footnotesize,
basicstyle=\ttfamily\footnotesize,
keywordstyle=\bfseries\color{green!50!black},
ndkeywordstyle=\color{darkgray}\bfseries,
commentstyle=\itshape\color{magenta!90!black},
identifierstyle=\ttfamily,
stringstyle=\color{orange!90!black},
showstringspaces=false,
}
% alias
\newcommand{\icode}{\minline}
\newcommand{\browserAPI}{\hyperref[sec.browserAPIs]{browser API}}
\newcommand{\browserAPIs}{\hyperref[sec.browserAPIs]{browser APIs}}
\newcommand{\BrowserAPI}{\hyperref[sec.browserAPIs]{Browser API}}
\newcommand{\BrowserAPIs}{\hyperref[sec.browserAPIs]{Browser APIs}}