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.
112 lines
2.4 KiB
112 lines
2.4 KiB
\documentclass[
|
|
a4paper,
|
|
abstract=true,
|
|
twoside,
|
|
listof=totoc,
|
|
numbers=noenddot,
|
|
bibliography=totoc,
|
|
BCOR=1.5cm,
|
|
headsepline,
|
|
DIV=12,
|
|
appendixprefix,
|
|
final
|
|
] {scrreprt}
|
|
|
|
% You should select either american or british instead of english here:
|
|
\usepackage[ngerman,british]{babel}
|
|
\usepackage{fontspec}
|
|
\usepackage[autostyle]{csquotes}
|
|
|
|
\usepackage[citebordercolor={0.75 0.75 1},
|
|
filebordercolor={0.75 0.75 1},
|
|
linkbordercolor={0.75 0.75 1},
|
|
urlbordercolor={0.75 0.75 1},
|
|
pdfborder={0.75 0.75 1},
|
|
hidelinks,
|
|
plainpages=false,pdfpagelabels=true]{hyperref}
|
|
|
|
\hypersetup{
|
|
pdftitle={Data Movement in Heterogeneous Memories with Intel Data Streaming Accelerator},
|
|
pdfauthor={Anatol Constantin Fürst},
|
|
pdfkeywords={intel,dsa,numa,memory,qdp,prefetching,cache,hbm,data,streaming,accelerator},
|
|
}
|
|
|
|
\input{preamble/packages.tex}
|
|
\addbibresource{own.bib}
|
|
\input{preamble/color.tex}
|
|
\input{preamble/style.tex}
|
|
\input{preamble/newcommands.tex}
|
|
\input{own.gls}
|
|
|
|
% If you know when you will hand in your thesis, enter the date here.
|
|
%\date{30. April 2009}
|
|
%\newcommand{\printdate}{\@date}
|
|
|
|
\begin{document}
|
|
|
|
\pagenumbering{Roman}
|
|
|
|
\input{content/00_title.tex}
|
|
\cleardoublepage
|
|
|
|
\includepdf{images/bachelor-aufgabe.pdf}
|
|
\cleardoublepage
|
|
|
|
\input{content/01_disclaimer.tex}
|
|
|
|
% NOTE: if you selected british or american above, change that here too
|
|
\selectlanguage{british}
|
|
|
|
\begin{abstract}
|
|
\input{content/02_abstract.tex}
|
|
\end{abstract}
|
|
\cleardoublepage
|
|
|
|
\tableofcontents
|
|
\cleardoublepage
|
|
|
|
\listoffigures
|
|
\cleardoublepage
|
|
|
|
\listoftables
|
|
\cleardoublepage
|
|
|
|
\cleardoublepage
|
|
|
|
\pagenumbering{arabic}
|
|
|
|
\clubpenalty = 10000 % Schusterjungen verhindern
|
|
\widowpenalty = 10000 % Hurenkinder verhindern
|
|
\displaywidowpenalty = 10000
|
|
|
|
% use \input for small stuff (like a list you include twice or a tiks figure)
|
|
% and \include for large latex compilation workloads (like a chapter) to get faster builds.
|
|
\include{content/10_introduction}
|
|
\cleardoublepage
|
|
\include{content/20_state}
|
|
\cleardoublepage
|
|
\include{content/30_performance}
|
|
\cleardoublepage
|
|
\include{content/40_design}
|
|
\cleardoublepage
|
|
\include{content/50_implementation}
|
|
\cleardoublepage
|
|
\include{content/60_evaluation}
|
|
\cleardoublepage
|
|
\include{content/70_conclusion}
|
|
\cleardoublepage
|
|
|
|
\appendix
|
|
|
|
\setglossarystyle{altlist}
|
|
\printglossaries
|
|
\cleardoublepage
|
|
|
|
\printbibliography
|
|
|
|
\iffalse
|
|
% an aid for Kile autocompletion
|
|
\bibliography{own.bib}
|
|
\fi
|
|
|
|
\end{document}
|