Group work for a Monash Research Methods course

Update LaTeX file for week 11

+31
+1
.gitignore
··· 27 27 wk8/week8.pdf 28 28 wk9/week9.pdf 29 29 wk10/week10.pdf 30 + wk11/week11.pdf 30 31 mini_proj/report/waldo.pdf 31 32 32 33 ## Waldo data for the mini_proj
+30
wk11/week11.tex
··· 1 + \documentclass[a4paper]{article} 2 + % To compile PDF run: latexmk -pdf {filename}.tex 3 + 4 + \usepackage{graphicx} % Used to insert images into the paper 5 + \graphicspath{ {} } 6 + \usepackage{float} 7 + \usepackage[justification=centering]{caption} % Used for captions 8 + \captionsetup[figure]{font=small} % Makes captions small 9 + \newcommand\tab[1][0.5cm]{\hspace*{#1}} % Defines a new command to use 'tab' in text 10 + % Math package 11 + \usepackage{amsmath} 12 + %enable \cref{...} and \Cref{...} instead of \ref: Type of reference included in the link 13 + \usepackage[capitalise,nameinlink]{cleveref} 14 + % 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 15 + \usepackage{hyperref} 16 + % UTF-8 encoding 17 + \usepackage[T1]{fontenc} 18 + \usepackage[utf8]{inputenc} %support umlauts in the input 19 + % Easier compilation 20 + \usepackage{bookmark} 21 + \usepackage{natbib} 22 + % \usepackage{graphicx} 23 + 24 + \begin{document} 25 + \title{Week 10 - Comparing Algorithms} 26 + \author{Kelvin Davis \and Jip J. Dekker\and Anthony Silvestere} 27 + \maketitle 28 + 1 29 \section{Simulating Time}\label{simulating-time} 2 30 3 31 In this section we use Cellular Automata to show how different updating ··· 91 119 92 120 This breakout first happens at 12, and so we deem this to be the 93 121 critical density of the system. 122 + \\ 123 + \end{document}