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.

97 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. 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. \input{own.gls}
  36. % If you know when you will hand in your thesis, enter the date here.
  37. %\date{30. April 2009}
  38. %\newcommand{\printdate}{\@date}
  39. \begin{document}
  40. \pagenumbering{Roman}
  41. \input{content/00_title.tex}
  42. \includepdf{images/bachelor-aufgabe.pdf}
  43. \cleardoublepage
  44. \input{content/01_disclaimer.tex}
  45. % NOTE: if you selected british or american above, change that here too
  46. \selectlanguage{british}
  47. \begin{abstract}
  48. \input{content/02_abstract.tex}
  49. \end{abstract}
  50. \cleardoublepage
  51. \tableofcontents
  52. \cleardoublepage
  53. \listoffigures
  54. \cleardoublepage
  55. \listoftables
  56. \cleardoublepage
  57. \pagenumbering{arabic}
  58. % use \input for small stuff (like a list you include twice or a tiks figure)
  59. % and \include for large latex compilation workloads (like a chapter) to get faster builds.
  60. \include{content/10_introduction}
  61. \include{content/20_state}
  62. \include{content/30_performance}
  63. \include{content/40_design}
  64. \include{content/50_implementation}
  65. \include{content/60_evaluation}
  66. \include{content/70_conclusion}
  67. \appendix
  68. \setglossarystyle{altlistgroup}
  69. \printglossaries
  70. \printbibliography
  71. \iffalse
  72. % an aid for Kile autocompletion
  73. \bibliography{own.bib}
  74. \fi
  75. \end{document}