Skip to content

Instantly share code, notes, and snippets.

@tomgco
Created April 23, 2012 20:44
Show Gist options
  • Save tomgco/2473715 to your computer and use it in GitHub Desktop.
Save tomgco/2473715 to your computer and use it in GitHub Desktop.
\documentclass[11pt,a4paper]{article}
% for images.
\usepackage{graphicx}
\usepackage{setspace}
% for code blocks
\usepackage{listings}
% referencing using surname first
\usepackage{natbib}
% small captions on figures
\usepackage[font=small,format=plain,labelfont=bf,up,textfont=up]{caption}
% Sorts out margins.
\usepackage[margin=3cm]{geometry}
\usepackage{float}
\usepackage{wrapfig}
% \linespread{1.3}
\onehalfspacing
\begin{document}
\lstset{language=C}
\bibpunct{(}{)}{;}{a}{,}{,}
\author{Tom Gallacher}
%\rightheader{"A Browser based distributed computing platform utilising idle cpu cycles}
\pagenumbering{roman}
\title{A browser based grid computing platform utilising idle CPU cycles}
\abstract{
This is my abstract.
\footnote{Ahhhh footnote.}
}
\newpage
\include{chapters/declaration}
\include{chapters/acknowledgements}
\tableofcontents
\newpage
\listoffigures
\listoftables
\newpage
\pagenumbering{arabic}
\include{chapters/introduction}
\include{chapters/litReview}
\include{chapters/methodology}
\include{chapters/dataAnalysis}
\include{chapters/conclusion}
% uses custom style for last name first in bibo
\bibliographystyle{plainnatlastname}
\bibliography{references.bib}
\end{document}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment