ff25cb77f1636ba35a0454f33b8295374163dfd7
[cc1516.git] / deliverables / report / report.tex
1 \documentclass{article}
2
3 \usepackage{listings}
4 \usepackage{clean}
5 \usepackage{spl}
6 \usepackage{hyperref}
7 \usepackage[a4paper]{geometry}
8
9 \title{Compiler Construction: SPL Compiler}
10 \author{Pim Jager\and Mart Lubbers}
11 \date{\today}
12
13 \lstset{%
14 basicstyle=\ttfamily\footnotesize,
15 breaklines,
16 captionpos=b
17 }
18
19 \newcommand{\SPLC}{\texttt{SPLC}}
20 \newcommand{\SPL}{\texttt{SPL}}
21 \newcommand{\SSM}{\texttt{SSM}}
22 \def\AST/{\texttt{AST}}
23
24 \let\tt\texttt
25
26 \begin{document}
27 \maketitle
28 \tableofcontents
29 \newpage
30
31 \input{intro.tex}
32
33 \input{pars.tex}
34
35 \input{sem.tex}
36
37 \input{gen.tex}
38
39 \input{ext.tex}
40
41 \end{document}