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
|
\documentclass[a4paper,twoside]{amsart}
\usepackage{geometry}
\usepackage{multicol}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usepackage[scaled]{beramono}
\usepackage[british]{babel}
\usepackage[babel=true]{csquotes}
\usepackage[usenames,dvipsnames,svgnames,table]{xcolor}
\definecolor{linkcolor}{rgb}{0,0.65,0}
\definecolor{citecolor}{rgb}{0.65,0,0}
\definecolor{urlcolor}{rgb}{0,0,0.65}
\usepackage[colorlinks=true,linkcolor=linkcolor,urlcolor=urlcolor,citecolor=citecolor]{hyperref}
\usepackage{natbib}
\usepackage{rutitlepage}
\usepackage{latexgit}
\usepackage{ual}
\usepackage{clean}
\usepackage{subcaption}
\usepackage{tikz}
\usetikzlibrary{positioning}
\let\oldtexttt\texttt
\def\texttt#1{\oldtexttt{\footnotesize #1}}
\newcommand*{\blankpage}{%
\vspace*{\fill}
{\centering\it This page intentionally left blank.\par}
\vspace{\fill}}
\makeatletter
\renewcommand*{\cleardoublepage}{\clearpage\if@twoside \ifodd\c@page
\blankpage\thispagestyle{empty}\newpage
\if@twocolumn\hbox{}\newpage\fi\fi\fi}
\makeatother
\let\oldsection\section
\renewcommand{\section}{\clearpage\oldsection}
\raggedcolumns
\title{Code generation for Thumb-2 processors}
\author{Camil Staps}
\date{\gitcommitdate[formatDate]}
\begin{document}
\maketitleru[
course={Bachelor Thesis},
authorstext={Author:},
authors={Camil Staps},
righttextheader={Supervisors:},
righttext={prof.~dr.~dr.h.c.~ir.~M.J.~Plasmeijer and drs.~J.H.G.~van~Groningen}]
\cleardoublepage
\thispagestyle{empty}
\tableofcontents
\cleardoublepage
\input{intro}
\input{two-bits}
%\input{approach}
\input{fix-storing-pc}
\cleardoublepage
\appendix
\input{abbr}
\cleardoublepage
\bibliographystyle{plainnat}
\bibliography{thesis}
\end{document}
|