Programmierparadigmen.tex 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  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. \usepackage{shortcuts}
  52. \usepackage{fancyhdr}
  53. \pagestyle{fancy}
  54. \renewcommand{\chaptermark}[1]%
  55. {\markboth{\MakeUppercase{\thechapter.\ #1}}{}}
  56. \renewcommand{\sectionmark}[1]%
  57. {\markright{\MakeUppercase{\thesection.\ #1}}}
  58. \renewcommand{\headrulewidth}{0.5pt}
  59. \renewcommand{\footrulewidth}{0pt}
  60. \newcommand{\helv}{%
  61. \fontfamily{phv}\fontseries{b}\fontsize{9}{11}\selectfont}
  62. \fancyhf{}
  63. \fancyhead[LE,RO]{\helv \thepage}
  64. \fancyhead[LO]{\helv \rightmark}
  65. \fancyhead[RE]{\helv \leftmark}
  66. \fancypagestyle{plain}{%
  67. \fancyhead{}
  68. \renewcommand{\headrulewidth}{0pt}
  69. }
  70. \hypersetup{
  71. pdfauthor = {Martin Thoma},
  72. pdfkeywords = {Programmierparadigmen},
  73. pdftitle = {Programmierparadigmen}
  74. }
  75. \makeindex
  76. \allowdisplaybreaks
  77. \usepackage{microtype}
  78. \begin{document}
  79. \pagenumbering{roman}
  80. \setcounter{page}{1}
  81. \input{titlepage}
  82. \input{Vorwort}
  83. \tableofcontents
  84. \pagenumbering{arabic}
  85. \setcounter{page}{1}
  86. \input{Programmiersprachen}
  87. \input{Haskell}
  88. \input{Prolog}
  89. \input{Scala}
  90. \input{X10}
  91. \input{C}
  92. \input{MPI}
  93. \appendix
  94. \input{Bildquellen}
  95. \clearpage
  96. \input{Abkuerzungen}
  97. \clearpage
  98. \input{Symbolverzeichnis}
  99. \clearpage
  100. \addcontentsline{toc}{chapter}{Stichwortverzeichnis}
  101. \renewcommand{\indexname}{Stichwortverzeichnis}
  102. \printindex
  103. \end{document}