doc.tex 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. \documentclass[a4paper,ngerman,british,BCOR1.5cm,headsepline,DIV12,appendixprefix,final]{scrbook}
  2. \usepackage[utf8x]{inputenc}
  3. \usepackage{ucs}
  4. \usepackage[OT1]{fontenc}
  5. \usepackage{babel}
  6. \usepackage{amsmath}
  7. \usepackage{varioref}
  8. \usepackage[pdftex,plainpages=false,pdfpagelabels=true,pdfusetitle]{hyperref}
  9. % citebordercolor={0.75 0.75 1},
  10. % filebordercolor={0.75 0.75 1},
  11. % linkbordercolor={0.75 0.75 1},
  12. % pagebordercolor={0.75 0.75 1},
  13. % urlbordercolor={0.75 0.75 1},
  14. % pdfborder={0.75 0.75 1},
  15. \usepackage[all]{hypcap}
  16. \usepackage{graphicx}
  17. \usepackage{epstopdf}
  18. \usepackage{subfigure}
  19. \usepackage{tocvsec2}
  20. \usepackage{engord}
  21. \usepackage{hyphenat}
  22. \usepackage{booktabs}
  23. \usepackage{overpic}
  24. \usepackage{tikz}
  25. \usepackage{rotating}
  26. \usepackage[left]{eurosym}
  27. \usepackage{pifont}
  28. \usepackage{color}
  29. %fontspec begin
  30. %\usepackage{fontspec}
  31. %\defaultfontfeatures{Scale=MatchLowercase}
  32. %\setmainfont[]{Liberation Sans}
  33. %\setsansfont{Liberation Sans}
  34. %\setmonofont{Liberation Mono}
  35. %fontspec end
  36. \usetikzlibrary{positioning}
  37. \usepackage[left,pagewise,modulo,]{lineno}
  38. %\linenumbers
  39. %90,102,204 - nice light blue
  40. \definecolor{code}{rgb}{.35, .4,.8}
  41. \newcommand{\todo}{\footnote}
  42. \newcommand{\comment}[1]{}
  43. \newcommand{\code}[1]{\mbox{\textcolor{code}{\texttt{#1}}}}
  44. \newcommand{\salespoint}{Salespoint~5}
  45. \tolerance 2414
  46. \hbadness 2414
  47. \emergencystretch 1.6em
  48. %\hfuzz 0.3pt
  49. \widowpenalty=10000 % Hurenkinder
  50. \clubpenalty=10000 % Schusterjungen
  51. %\vfuzz \hfuzz
  52. %\raggedbottom
  53. %tocloft fixups
  54. \makeatletter
  55. \providecommand{\IfPackageLoaded}[2]{\@ifpackageloaded{#1}{#2}{}}
  56. \providecommand{\IfElsePackageLoaded}[3]{\@ifpackageloaded{#1}{#2}{#3}}
  57. \makeatother
  58. \IfElsePackageLoaded{subfig}
  59. % IF subfig
  60. {\usepackage[subfigure]{tocloft}}{
  61. % ELSE
  62. \IfElsePackageLoaded{subfigure}
  63. % IF subfigure
  64. {\usepackage[subfigure]{tocloft}}
  65. % Else (No subfig nor subfigure)
  66. {\usepackage{tocloft}}
  67. }
  68. \IfPackageLoaded{subfig}{
  69. \setcounter{lofdepth}{2}
  70. \setcounter{lotdepth}{2}
  71. }
  72. %tocloft fixups end
  73. \begin{document}
  74. \subject{\LARGE{\salespoint}}
  75. %\title{Implementierung des DDEKit-Ansatzes auf Linux}
  76. %\title{Implementation of the DDEKit approach for Linux.}
  77. %\title{DDEKit-Linux: improved security and ease of development for Linux user space drivers.}
  78. \title{Technical Reference}
  79. \subtitle{Preliminary Version}
  80. \author{Christopher Bellmann, Thomas Dedek, Stanley F\"orster, \\ Paul Henke, Hendrik Neubert, Hannes Weisbach}
  81. \publishers{Dresden University of Technology\\
  82. Department of Computer Science\\
  83. Institute of Software- and Multimedia-Technology\\
  84. Software Technology Group\\
  85. \vskip 6cm
  86. \hangafter=0
  87. \footnotesize
  88. \begin{tabular}{ll}
  89. Address & Telephone: 0351 463 38442 \\
  90. Department of Computer Science & Fax: 0351 463 38459\\
  91. Insitute of Software and Multimedia Technology & birgit.demuth@tu-dresden.de\\
  92. TU Dresden & http://tu-dresden.de\\
  93. 01062 Dresden & \\
  94. \end{tabular}
  95. }
  96. %\comment{
  97. \hypersetup{
  98. pdfkeywords={salespoint, swt, swp, praktikum},
  99. pdfsubject={\salespoint - Technical Overview},
  100. }
  101. \maketitle
  102. \selectlanguage{british}
  103. \cleardoublepage{}
  104. \maxtocdepth{section}
  105. \tableofcontents{}
  106. \clearpage
  107. \listoffigures
  108. \listoftables
  109. \clearpage
  110. \settocdepth{chapter}
  111. \input{introduction.tex}
  112. \settocdepth{section}
  113. \input{background/background}
  114. \input{core/core}
  115. \clearpage
  116. \phantomsection
  117. \addcontentsline{toc}{chapter}{Bibliography}
  118. \bibliographystyle{alpha}
  119. \bibliography{bib}
  120. \end{document}