Programmierparadigmen.tex 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. \documentclass[DIV15,BCOR12mm]{scrbook}
  2. \newif\ifAFive\AFivetrue
  3. \ifAFive
  4. \KOMAoptions{paper=a5,twoside=true}
  5. \else
  6. \KOMAoptions{paper=a4,twoside=false}
  7. \fi
  8. \usepackage{etoolbox}
  9. \usepackage{amsmath,amssymb}% math symbols / fonts
  10. \usepackage{mathtools} % \xRightarrow
  11. \usepackage{nicefrac} % \nicefrac
  12. \usepackage[utf8]{inputenc} % this is needed for umlauts
  13. \usepackage[ngerman]{babel} % this is needed for umlauts
  14. \usepackage[T1]{fontenc} % this is needed for correct output of umlauts in pdf
  15. \usepackage[framed,amsmath,thmmarks,hyperref]{ntheorem}
  16. \usepackage{framed}
  17. \usepackage{marvosym}
  18. \usepackage{makeidx} % for automatically generation of an index
  19. \usepackage{xcolor}
  20. \usepackage[bookmarks,bookmarksnumbered,hypertexnames=false,pdfpagelayout=OneColumn,colorlinks,hyperindex=false]{hyperref} % has to be after makeidx
  21. \usepackage{breakurl} % allow line breaks in \href{ ... }
  22. \ifAFive
  23. \hypersetup{hidelinks=true}
  24. % no \else branch needed in this case
  25. \fi
  26. \usepackage{enumitem} % Better than \usepackage{enumerate}, because it allows to set references
  27. \usepackage{tabto}
  28. \usepackage{braket} % needed for \Set
  29. \usepackage{csquotes} % \enquote{}
  30. \usepackage{subfig} % multiple figures in one
  31. \usepackage{parskip} % nicer paragraphs
  32. \usepackage{xifthen} % \isempty
  33. \usepackage{changepage} % for the adjustwidth environment
  34. \usepackage{pst-solides3d}
  35. \usepackage[colorinlistoftodos]{todonotes}
  36. \usepackage{pgfplots}
  37. \pgfplotsset{compat=1.7}
  38. \usepackage[arrow, matrix, curve]{xy}
  39. \usepackage{caption} % get newlines within captions
  40. \usepackage{tikz} % draw
  41. \usepackage{tikz-3dplot} % draw
  42. \usepackage{tkz-fct} % draw
  43. \usepackage{tkz-euclide} % draw
  44. \usetkzobj{all} % tkz-euclide
  45. \usetikzlibrary{3d,calc,intersections,er,arrows,positioning,shapes.misc,patterns,fadings,decorations.pathreplacing}
  46. \usepackage{tqft}
  47. \usepackage{xspace} % for new commands; decides weather I want to insert a space after the command
  48. \usepackage[german,nameinlink]{cleveref} % has to be after hyperref, ntheorem, amsthm
  49. \usepackage{acronym}
  50. \usepackage{minted} % needed for the inclusion of source code
  51. \usemintedstyle{bw}
  52. \usepackage{courier}
  53. \usepackage{wasysym}
  54. \usepackage[binary-units = true]{siunitx} % this package is for units!
  55. \sisetup{locale=DE}
  56. \usepackage{shortcuts}
  57. \usepackage{fancyhdr}
  58. \pagestyle{fancy}
  59. \renewcommand{\chaptermark}[1]%
  60. {\markboth{\MakeUppercase{\thechapter.\ #1}}{}}
  61. \renewcommand{\sectionmark}[1]%
  62. {\markright{\MakeUppercase{\thesection.\ #1}}}
  63. \renewcommand{\headrulewidth}{0.5pt}
  64. \renewcommand{\footrulewidth}{0pt}
  65. \newcommand{\helv}{%
  66. \fontfamily{phv}\fontseries{b}\fontsize{9}{11}\selectfont}
  67. \fancyhf{}
  68. \fancyhead[LO,RE]{\helv \thepage}
  69. \fancyhead[LE]{\helv \rightmark}
  70. \fancyhead[RO]{\helv \leftmark}
  71. \fancypagestyle{plain}{%
  72. \fancyhead{}
  73. \renewcommand{\headrulewidth}{0pt}
  74. }
  75. \hypersetup{
  76. pdfauthor = {Martin Thoma},
  77. pdfkeywords = {Programmierparadigmen},
  78. pdftitle = {Programmierparadigmen}
  79. }
  80. \makeindex
  81. \allowdisplaybreaks
  82. \usepackage{microtype}
  83. \begin{document}
  84. \pagenumbering{roman}
  85. \setcounter{page}{1}
  86. \input{titlepage}
  87. \input{Vorwort}
  88. \tableofcontents
  89. \pagenumbering{arabic}
  90. \setcounter{page}{1}
  91. \input{Programmiersprachen}
  92. \input{Programmiertechniken}
  93. \input{Logik}
  94. \input{Lambda}
  95. \input{Typinferenz}
  96. \input{Parallelitaet}
  97. \input{Haskell}
  98. \input{Prolog}
  99. \input{Scala}
  100. \input{X10}
  101. \input{C}
  102. \input{MPI}
  103. \input{Compilerbau}
  104. \appendix
  105. \input{Bildquellen}
  106. \clearpage
  107. \input{Abkuerzungen}
  108. \clearpage
  109. \input{Definitionen}
  110. \clearpage
  111. \input{Symbolverzeichnis}
  112. \clearpage
  113. \addcontentsline{toc}{chapter}{Stichwortverzeichnis}
  114. \renewcommand{\indexname}{Stichwortverzeichnis}
  115. \printindex
  116. \end{document}