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.

101 lines
2.1 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[autostyle]{csquotes}
  18. \usepackage[citebordercolor={0.75 0.75 1},
  19. filebordercolor={0.75 0.75 1},
  20. linkbordercolor={0.75 0.75 1},
  21. % pagebordercolor={0.75 0.75 1},
  22. urlbordercolor={0.75 0.75 1},
  23. pdfborder={0.75 0.75 1},
  24. hidelinks,
  25. plainpages=false,pdfpagelabels=true]{hyperref}
  26. \hypersetup{%
  27. pdftitle={Data Movement in Heterogeneous Memories with Intel Data Streaming Accelerator},
  28. pdfauthor={Anatol Constantin Fürst},
  29. pdfkeywords={intel,dsa,numa,memory,bachelor,thesis},
  30. }
  31. \input{preamble/packages.tex}
  32. \addbibresource{own.bib}
  33. \input{preamble/color.tex}
  34. \input{preamble/style.tex}
  35. \input{preamble/newcommands.tex}
  36. \input{own.gls}
  37. % If you know when you will hand in your thesis, enter the date here.
  38. %\date{30. April 2009}
  39. %\newcommand{\printdate}{\@date}
  40. \begin{document}
  41. \pagenumbering{Roman}
  42. \input{content/00_title.tex}
  43. \includepdf{images/bachelor-aufgabe.pdf}
  44. \cleardoublepage
  45. \input{content/01_disclaimer.tex}
  46. % NOTE: if you selected british or american above, change that here too
  47. \selectlanguage{british}
  48. \begin{abstract}
  49. \input{content/02_abstract.tex}
  50. \end{abstract}
  51. \cleardoublepage
  52. \tableofcontents
  53. \cleardoublepage
  54. % remove this on final
  55. \listoftodos
  56. \cleardoublepage
  57. \listoffigures
  58. \cleardoublepage
  59. \listoftables
  60. \cleardoublepage
  61. \pagenumbering{arabic}
  62. % use \input for small stuff (like a list you include twice or a tiks figure)
  63. % and \include for large latex compilation workloads (like a chapter) to get faster builds.
  64. \include{content/10_introduction}
  65. \include{content/20_state}
  66. \include{content/30_design}
  67. \include{content/40_implementation}
  68. \include{content/50_evaluation}
  69. \include{content/60_futurework}
  70. \include{content/70_conclusion}
  71. \appendix
  72. \setglossarystyle{altlistgroup}
  73. \printglossaries
  74. \printbibliography
  75. \iffalse
  76. % an aid for Kile autocompletion
  77. \bibliography{own.bib}
  78. \fi
  79. \end{document}