1
0

Update LaTeX file for week 11

This commit is contained in:
Jip J. Dekker 2018-05-18 15:44:54 +10:00
parent adc47422c4
commit 641edf48f2
No known key found for this signature in database
GPG Key ID: 9CB1B58997DD0D58
2 changed files with 31 additions and 0 deletions

1
.gitignore vendored
View File

@ -27,6 +27,7 @@ wk7/week7.pdf
wk8/week8.pdf wk8/week8.pdf
wk9/week9.pdf wk9/week9.pdf
wk10/week10.pdf wk10/week10.pdf
wk11/week11.pdf
mini_proj/report/waldo.pdf mini_proj/report/waldo.pdf
## Waldo data for the mini_proj ## Waldo data for the mini_proj

View File

@ -1,3 +1,31 @@
\documentclass[a4paper]{article}
% To compile PDF run: latexmk -pdf {filename}.tex
\usepackage{graphicx} % Used to insert images into the paper
\graphicspath{ {} }
\usepackage{float}
\usepackage[justification=centering]{caption} % Used for captions
\captionsetup[figure]{font=small} % Makes captions small
\newcommand\tab[1][0.5cm]{\hspace*{#1}} % Defines a new command to use 'tab' in text
% Math package
\usepackage{amsmath}
%enable \cref{...} and \Cref{...} instead of \ref: Type of reference included in the link
\usepackage[capitalise,nameinlink]{cleveref}
% Enable that parameters of \cref{}, \ref{}, \cite{}, ... are linked so that a reader can click on the number an jump to the target in the document
\usepackage{hyperref}
% UTF-8 encoding
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc} %support umlauts in the input
% Easier compilation
\usepackage{bookmark}
\usepackage{natbib}
% \usepackage{graphicx}
\begin{document}
\title{Week 10 - Comparing Algorithms}
\author{Kelvin Davis \and Jip J. Dekker\and Anthony Silvestere}
\maketitle
\section{Simulating Time}\label{simulating-time} \section{Simulating Time}\label{simulating-time}
In this section we use Cellular Automata to show how different updating In this section we use Cellular Automata to show how different updating
@ -91,3 +119,5 @@ of the energy released exceeds 10 .
This breakout first happens at 12, and so we deem this to be the This breakout first happens at 12, and so we deem this to be the
critical density of the system. critical density of the system.
\\
\end{document}