forked from TUM-Dev/tum-thesis-latex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
93 lines (71 loc) · 2.77 KB
/
main.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
% !BIB TS-program = biber
\RequirePackage[l2tabu,orthodox]{nag}
% TODO: decide if one-sided/two-sided
%\documentclass[headsepline,footsepline,footinclude=false,fontsize=11pt,paper=a4,listof=totoc,bibliography=totoc,BCOR=12mm,DIV=12]{scrbook} % two-sided
\documentclass[headsepline,footsepline,footinclude=false,oneside,fontsize=11pt,paper=a4,listof=totoc,bibliography=totoc]{scrbook} % one-sided
% TODO: change citation style in settings
\input{settings}
% TODO: change thesis information
\newcommand*{\getUniversity}{Technische Universität München}
\newcommand*{\getFaculty}{Informatics}
\newcommand*{\getDegree}{Robotics, Cognition, Intelligence}
\newcommand*{\getSchool}{Computation, Information and Technology}
\newcommand*{\getTitle}{RISC-V Instruction Level Profiling in ETISS Simulator}
\newcommand*{\getTitleGer}{Profiling von RISC-V Instruktionen im ETISS Simulator}
\newcommand*{\getAuthor}{Liang-Ta Wei}
\newcommand*{\getDoctype}{Master's Thesis}
\newcommand*{\getSupervisor}{Philipp van Kempen}
\newcommand*{\getAdvisor}{Prof. Dr.-Ing. Ulf Schlichtmann}
\newcommand*{\getSubmissionDate}{15.06.2024}
\newcommand*{\getSubmissionLocation}{Munich}
\begin{document}
% Set page numbering to avoid "destination with the same identifier has been already used" warning for cover page.
% (see https://en.wikibooks.org/wiki/LaTeX/Hyperlinks#Problems_with_Links_and_Pages).
\pagenumbering{alph}
\input{pages/cover}
\frontmatter{}
\input{pages/title}
\input{pages/disclaimer}
\input{pages/abstract}
\microtypesetup{protrusion=false}
\tableofcontents{}
\microtypesetup{protrusion=true}
\mainmatter{}
\chapter{Introduction}
\input{chapters/01_introduction}
\chapter{State of the Art}
\input{chapters/02_state_of_the_art}
\chapter{Background}
\input{chapters/03_background}
\chapter{Implementation}
\input{chapters/04_implementation}
\chapter{Evaluation}
\input{chapters/05_evaluation}
\chapter{Summary}
\input{chapters/06_summary}
% TODO: add more chapters here
\chapter{Appendix}
\label{chapters:appendix}
\input{chapters/07_appendix}
\microtypesetup{protrusion=false}
\addchap{Abbreviations}
\begin{acronym}
\itemsep-.25\baselineskip
\acro{TUM}[TUM]{Technical University of Munich}
\acro{EDA}[EDA]{Electronic Design Automation}
\acro{TinyML}[TinyML]{Tiny Machine Learning}
\acro{ISA}[ISA]{Instruction set architecture}
\acro{ETISS}[ETISS]{Extendable Instruction Set Simulator}
\acro{SoC}[SoC]{Systems-on-chip}
\acro{IR}[IR]{Intermediate Representation}
\acro{PDLL}[PDLL]{PDL Language}
\acro{JIT}[JIT]{just-in-time}
\acro{ELF}[ELF]{Executable and Linkable Format}
\acro{ASIP}[ASIP]{application-specific instruction set processor}
% TODO: add acronyms
\end{acronym}
\listoffigures{}
\listoftables{}
\microtypesetup{protrusion=true}
\printbibliography{}
\end{document}