booka4.tex 2.6 KB

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