initial commit, transfer from own repo
[ar1516.git] / preamble.tex
1 \documentclass{article}
2
3 \usepackage{hyperref} % For clickable links
4 \usepackage{a4wide} % For better page usage
5 \usepackage{float} % For better placement of tables/figures
6 \usepackage{graphicx} % For images
7 \usepackage{amsmath} % For align
8 \usepackage{listings} % For code snippets
9 \usepackage{nicefrac} % For diagonal fractions
10 \usepackage{booktabs} % For nice tables
11
12 \everymath{\displaystyle\allowdisplaybreaks}
13
14 \lstset{%
15 basicstyle=\scriptsize,
16 breakatwhitespace=true,
17 breaklines=true,
18 keepspaces=true,
19 numbers=left,
20 numberstyle=\tiny,
21 frame=L,
22 showspaces=false,
23 showstringspaces=false,
24 showtabs=false,
25 tabsize=2
26 }
27
28 \author{Mart Lubbers (s4109503)}
29 \title{Automated reasoning Assignment 1}
30 \date{\today}