summaryrefslogtreecommitdiff
path: root/doc/report.tex
blob: e3ed6402f585d78643110490e56c67410eaa98f7 (plain)
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
\documentclass{scrreprt}

\usepackage[T1]{fontenc}
\usepackage{tabularx}
\usepackage{booktabs}
\usepackage{listings}
\usepackage{syntax}
\usepackage[backend=biber,style=verbose-ibid,dashed=false]{biblatex}

% Do not start chapter on a new page.
\RedeclareSectionCommand[
  style=section,
  indent=0pt
]{chapter}

\bibliography{credits}

\title{The programming language Elna}
\author{Eugen Wissner}

\begin{document}

\maketitle
\tableofcontents

\addchap{Introduction}

Elna is a simple, imperative, low-level programming language.

It is intendet to accompany other languages in the areas, where a high-level
language doesn't fit well. It is also supposed to be an intermediate
representation for a such high-level hypothetical programming language.

\addchap{Credits}

Since Elna syntactically resembles Oberon larger parts of this specification
are derived from the Oberon report\footnote{\cite[]{oberon}}.

\include{language}
\include{type-system}
\include{appendix}

% \addcontentsline{toc}{chapter}{References}
\printbibliography[heading=bibintoc, title=References]{}

\end{document}