master-thesis/thesis/main.tex

93 lines
3.7 KiB
TeX
Raw Normal View History

2025-01-04 10:38:27 +01:00
%%% File encoding: UTF-8
%%% äöüÄÖÜß <-- no German umlauts here? Use an UTF-8 compatible editor!
%%% Magic comments for setting the correct parameters in compatible IDEs
% !TeX encoding = utf8
% !TeX program = pdflatex
% !TeX spellcheck = de_DE
% !BIB program = biber
\RequirePackage[utf8]{inputenc} % Remove when using lualatex or xelatex!
\RequirePackage{hgbpdfa} % Creates a PDF/A-2b compliant document
\documentclass[master,english,smartquotes,apa]{hgbthesis}
% Valid options in [..]:
% Type of work: 'diploma', 'master' (default), 'bachelor', 'internship'
% Additionally for a thesis exposé: 'proposal (for 'bachelor' and 'master')
% Main language: 'german' (default), 'english'
% Turn on smart quote handling: 'smartquotes'
% APA bibliography style: 'apa'
%%%-----------------------------------------------------------------------------
\graphicspath{{images/}} % Location of images and graphics
\logofile{logo} % Logo file: images/logo.pdf (no logo: \logofile{})
\bibliography{references} % Biblatex bibliography file (references.bib)
%%%-----------------------------------------------------------------------------
\begin{document}
%%%-----------------------------------------------------------------------------
%%%-----------------------------------------------------------------------------
% Title page entries
%%%-----------------------------------------------------------------------------
\title{Interpreter and Transpiler for simple expressions on Nvidia GPUs using Julia}
\author{Daniel Wiplinger}
\programname{Software Engineering}
%\programtype{Fachhochschul-Bachelorstudiengang} % select/edit
\programtype{Fachhochschul-Masterstudiengang}
\placeofstudy{Hagenberg}
\dateofsubmission{2025}{01}{01} % {YYYY}{MM}{DD}
\advisor{DI Dr. Gabriel Kronberger} % optional
%\strictlicense % restrictive license instead of Creative Commons (discouraged!)
%%%-----------------------------------------------------------------------------
\frontmatter % Front part (roman page numbers)
%%%-----------------------------------------------------------------------------
\maketitle
\tableofcontents
\include{front/abstract}
\include{front/kurzfassung}
%%%-----------------------------------------------------------------------------
\mainmatter % Main part (arabic page numbers)
%%%-----------------------------------------------------------------------------
\include{chapters/introduction}
\include{chapters/relwork}
\include{chapters/conceptdesign}
\include{chapters/implementation}
\include{chapters/evaluation}
\include{chapters/conclusion}
%%%-----------------------------------------------------------------------------
\appendix % Appendix
%%%-----------------------------------------------------------------------------
% \include{back/appendix_a} % Technical supplements
% \include{back/appendix_b} % Contents of the CD-ROM/DVD
% \include{back/appendix_c} % Chronological list of changes
% \include{back/appendix_d} % Source text of this document
%%%-----------------------------------------------------------------------------
\backmatter % Back part (bibliography, glossary, etc.)
%%%-----------------------------------------------------------------------------
\MakeBibliography % References
%%%-----------------------------------------------------------------------------
% Special page for checking print size
%%%-----------------------------------------------------------------------------
\include{back/printbox}
%%%-----------------------------------------------------------------------------
\end{document}
%%%-----------------------------------------------------------------------------