-
Notifications
You must be signed in to change notification settings - Fork 0
/
progress_report.tex
67 lines (52 loc) · 1.57 KB
/
progress_report.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
\documentclass[a4paper,11pt]{report}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{lmodern}
\usepackage{mathptmx}
\usepackage[toc,page]{appendix}
\usepackage{parskip}
\usepackage[style=authoryear,citestyle=authoryear,backend=biber]{biblatex}
\usepackage{listings}
\usepackage{color}
\usepackage{pdfpages}
\addbibresource{progress_report_content/bibliography.bib}
\definecolor{dkgreen}{rgb}{0,0.6,0}
\definecolor{gray}{rgb}{0.5,0.5,0.5}
\definecolor{mauve}{rgb}{0.58,0,0.82}
\lstset{frame=tb,
language=Python,
aboveskip=3mm,
belowskip=3mm,
showstringspaces=false,
columns=flexible,
basicstyle={\small\ttfamily},
numbers=none,
numberstyle=\tiny\color{gray},
keywordstyle=\color{blue},
commentstyle=\color{dkgreen},
stringstyle=\color{mauve},
breaklines=true,
breakatwhitespace=true,
tabsize=3
}
\renewcommand{\lstlistingname}{Code}
\title{Evaluation of a Haskell Web Framework - Progress Report \\ Computer Science}
\author{Junaid Ali Rasheed}
\begin{document}
\maketitle
\tableofcontents
\newpage
\input{progress_report_content/chapter_1}
\input{progress_report_content/chapter_2}
\input{progress_report_content/chapter_3}
\input{progress_report_content/chapter_4}
\printbibliography[heading=bibintoc,title={References}]
\begin{appendices}
\chapter{Project Diary}
\input{project_diary_content}
\chapter{Ethics Form}
\includepdf[pages=-]{pdf_documents/seas-ethics-student-project-CS-FYP.pdf}
\chapter{Final Year Project Definition Form}
\includepdf[pages=-]{pdf_documents/Final_Year_Project_Definition_Form.pdf}
\end{appendices}
\end{document}