This contains my bachelors thesis and associated tex files, code snippets and maybe more. Topic: Data Movement in Heterogeneous Memories with Intel Data Streaming Accelerator
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

102 lines
2.2 KiB

  1. \documentclass[
  2. a4paper,
  3. abstract=true,
  4. twoside,
  5. listof=totoc,
  6. numbers=noenddot,
  7. bibliography=totoc,
  8. BCOR=1.5cm,
  9. headsepline,
  10. DIV=12,
  11. appendixprefix,
  12. final
  13. ] {scrreprt}
  14. % You should select either american or british instead of english here:
  15. \usepackage[ngerman,british]{babel}
  16. \usepackage{fontspec}
  17. \usepackage[citebordercolor={0.75 0.75 1},
  18. filebordercolor={0.75 0.75 1},
  19. linkbordercolor={0.75 0.75 1},
  20. % pagebordercolor={0.75 0.75 1},
  21. urlbordercolor={0.75 0.75 1},
  22. pdfborder={0.75 0.75 1},
  23. hidelinks,
  24. plainpages=false,pdfpagelabels=true]{hyperref}
  25. \hypersetup{%
  26. pdftitle={Data Movement in Heterogeneous Memories with Intel Data Streaming Accelerator},
  27. pdfauthor={Anatol Constantin Fürst},
  28. pdfkeywords={intel,dsa,numa,memory,bachelor,thesis},
  29. }
  30. \input{preamble/packages.tex}
  31. \addbibresource{own.bib}
  32. \input{preamble/color.tex}
  33. \input{preamble/style.tex}
  34. \input{preamble/newcommands.tex}
  35. % If you know when you will hand in your thesis, enter the date here.
  36. %\date{30. April 2009}
  37. %\newcommand{\printdate}{\@date}
  38. \begin{document}
  39. \pagenumbering{Roman}
  40. \input{content/00_title.tex}
  41. \includepdf{images/bachelor-aufgabe.pdf}
  42. \cleardoublepage
  43. \input{content/01_disclaimer.tex}
  44. % NOTE: if you selected british or american above, change that here too
  45. \selectlanguage{british}
  46. \begin{abstract}
  47. \input{content/02_abstract.tex}
  48. \end{abstract}
  49. \cleardoublepage
  50. \tableofcontents
  51. \cleardoublepage
  52. % remove this on final
  53. \listoftodos
  54. \cleardoublepage
  55. \listoffigures
  56. \cleardoublepage
  57. \listoftables
  58. \cleardoublepage
  59. \pagenumbering{arabic}
  60. % use \input for small stuff (like a list you include twice or a tiks figure)
  61. % and \include for large latex compilation workloads (like a chapter) to get faster builds.
  62. \include{content/10_introduction}
  63. \include{content/20_state}
  64. \include{content/30_design}
  65. \include{content/40_implementation}
  66. \include{content/50_evaluation}
  67. \include{content/60_futurework}
  68. \include{content/70_conclusion}
  69. \appendix
  70. %\addchap{Glossar}
  71. % makeglossaries diplom
  72. %\printglossary[style=altlist]
  73. %\printglossary[type=\acronymtype,style=long]
  74. \printbibliography
  75. \iffalse
  76. % an aid for Kile autocompletion
  77. \bibliography{own.bib}
  78. \fi
  79. \end{document}