-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
38 lines (33 loc) · 1.08 KB
/
main.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
% We use report since it is similar to book just doesn't use a blank page after every chapter
\documentclass[a4paper, 11pt]{report}
\usepackage{color}
\usepackage[english]{babel}
\usepackage{fullpage}
\usepackage[table]{xcolor}
\usepackage{listings}
% For adding graphics/figures
\usepackage{graphicx}
\graphicspath{ {images/} }
% To make sure a figure is put where you specify use [H] option
\usepackage{float}
% The caption size
% http://tex.stackexchange.com/questions/101591/setting-font-size-for-caption-package
\usepackage[skip=2pt, font=small, labelfont={sf,bf}, margin=1cm]{caption}
% To get nice urls
\usepackage{url}
\begin{document}
% Add separate titlepage
\input{titlepage}
% remove all numbering but still add to ToC
\setcounter{secnumdepth}{-2}
\tableofcontents
% All content i.e. create a separate page in the chapters folder to include here
% use \chapter{<chapter name>} to add a title, use \input{chapters/<chapter name>}
\chapter{Week 36}
\input{chapters/week36}
\chapter{Week 37}
\input{chapters/week37}
\chapter{Week 38}
\input{chapters/week38}
\input{bibliography}
\end{document}