Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

📚 The CoCalc Library - books, templates and other resources

132928 views
License: OTHER
1
\documentclass[technote,a4paper,leqno]{IEEEtran}
2
\pdfoutput=1
3
4
\usepackage[utf8]{inputenc} % this is needed for umlauts
5
\usepackage[ngerman]{babel} % this is needed for umlauts
6
\usepackage[T1]{fontenc} % this is needed for correct output of umlauts in pdf
7
\usepackage{graphicx}
8
\usepackage{amsmath,amssymb}
9
\usepackage[absolute,overlay]{textpos}
10
\usepackage{vmargin} % Adjust margins in a simple way
11
\usepackage{tikz}
12
\usepackage{csquotes}
13
\usepackage[binary-units=true]{siunitx}
14
\usepackage{listings} % needed for the inclusion of source code
15
\usepackage{caption}
16
\DeclareCaptionFont{white}{\color{white}}
17
\DeclareCaptionFormat{listing}{\colorbox{gray}{\parbox{\linewidth}{#3}}}
18
\captionsetup[lstlisting]{format=listing,labelfont=white,textfont=white}
19
20
\lstset{
21
aboveskip={1.3\baselineskip},
22
basicstyle=\small\ttfamily\linespread{4},
23
breaklines=false,
24
columns=flexible,
25
commentstyle=\color[rgb]{0.127,0.427,0.514}\ttfamily\itshape,
26
escapechar=@,
27
extendedchars=true,
28
frame=none,
29
identifierstyle=\color{black},
30
inputencoding=latin1,
31
keywordstyle=\color[HTML]{228B22}\bfseries,
32
language=C,
33
ndkeywordstyle=\color[HTML]{228B22}\bfseries,
34
numbers=left,
35
numberstyle=\scriptsize,
36
prebreak = \raisebox{0ex}[0ex][0ex]{\ensuremath{\hookleftarrow}},
37
stringstyle=\color[rgb]{0.639,0.082,0.082}\ttfamily,
38
showstringspaces=false,
39
xleftmargin=5.0ex
40
}
41
42
\usepackage{url}
43
\usepackage{breakurl}
44
\usepackage[raiselinks=true,
45
bookmarks=true,
46
bookmarksopenlevel=1,
47
bookmarksopen=true,
48
bookmarksnumbered=true,
49
breaklinks,
50
hyperindex=true,
51
plainpages=false,
52
pdfpagelabels=true,
53
pdfborder={0 0 0.5}]{hyperref}
54
\def\UrlBreaks{\do\/\do-}
55
56
\usepackage{xspace}
57
\newcommand*\elide{\textup{[\,\dots]}\xspace}
58
59
\usepackage[german,nameinlink, noabbrev,capitalise]{cleveref}
60
61
\title{Sicherheit in Kognitiven Automobilien}
62
\author{%
63
\IEEEauthorblockN{Martin Thoma}\\
64
\IEEEauthorblockA{E-Mail: info@martin-thoma.de} % ORCID: http://orcid.org/0000-0002-6517-1690
65
}
66
67
\hypersetup{
68
pdfauthor = {Martin Thoma},
69
pdfkeywords = {security, Sicherheit, Automobile, Hacking},
70
pdfsubject = {security},
71
pdftitle = {Sicherheit in Kognitiven Automobilien},
72
}
73
74
\usepackage{microtype}
75
76
\begin{document}
77
\maketitle
78
\input{abstract}
79
\input{Einleitung}
80
\input{Standards}
81
\input{Angriffe}
82
\input{Verteidigung}
83
84
\bibliographystyle{IEEEtranSA}
85
\bibliography{literatur}
86
\end{document}
87
88