I'm having a bit of trouble trying to get the \begin{acknowledgements} to work with my final year project. I've inserted this right before my abstract and when I run the file it comes with errors. Anyone know how I can insert an acknowledgements page after my title page but before my abstract.
This is what i've got so far
Code: Select all
\documentclass[11pt,a4paper,oneside, english]{article}
\author{AA}
\title{Pricing of Options with Dividends using Binomial Trees}
\usepackage{setspace}
\usepackage{graphicx}
\usepackage{amsmath}
\usepackage[top=2.5cm, bottom=2.5cm, left=4cm, right=2.5cm]{geometry}
\usepackage[framed,numbered]{mcode}
\usepackage[toc,page]{appendix}
\usepackage[T1]{fontenc}
\usepackage[latin1]{inputenc}
\usepackage{babel}
\usepackage[font=small,labelfont=bf,tableposition=top]{caption}
\usepackage{booktabs,multirow}
\usepackage{lmodern}
\setlength{\parskip}{0.15cm}
\begin{document}
\begin{titlepage}
\begin{center}
\includegraphics{X_Logo}\\
\ \\
\textsc{\Large
School of Information Systems, Computing \& Mathematics\\
\ \\
Bachelor of Science in Financial Mathematics\\
\ \\
Final Year Project\\
\ \\}
{\huge \bfseries
Pricing Options with Dividends using Binomial Trees
\\}
\ \\
\ \\
\begin{minipage}{0.4\textwidth}
\begin{flushleft} \large
\emph{Author:}\\
AA\\
\footnotesize{0428292}
\end{flushleft}
\end{minipage}
\begin{minipage}{0.4\textwidth}
\begin{flushright} \large
\emph{Supervisor:} \\
MW\\
\end{flushright}
\end{minipage}
\vfill % fill vertical space
{\large \today}
\end{center}
\end{titlepage}
\doublespacing
\thispagestyle{empty}
\begin{acknowledgements}
I would like to thank
\end{acknowledgements}
\begin{abstract}
This dissertation focuses
\end{abstract}
\end{document}