\documentclass[a4paper]{article} \usepackage{amsmath} % - Required for maths \usepackage{graphicx} % - Required for figures \usepackage{subfig} % - Required for subfloats %\usepackage{wrapfig} % - For wrapping text around figures - \begin{wrapfigure} %\usepackage{sidecap} % - Places the caption along the side of the figure - \begin{SCfigure} \usepackage{natbib} % - Required for referencing a .bib file created using BibDesk, Papers, etc. %\usepackage{color} % - For changing font colour %\usepackage{hyperref} % - For in-document links (e.g. between a figure and its reference \usepackage[version=3]{mhchem} % - For writing chemical equations \usepackage{setspace} % - Required to adjust line-spacing %\usepackage{fontspec} % For changing the default font. %\setmainfont{} %\usepackage{multicol} - For writing articles with more than one column of text %\usepackage{multirow} - Used in tables for cells spanning multiple rows/columns \usepackage[top=2.5cm, bottom=2.5cm, left=3cm, right=2cm]{geometry} % - Required for modifying margins - this set-up is for the MOAC thesis \usepackage{fancyhdr} % - Adds headers and footers to the page \setlength{\headheight}{15.2pt} \pagestyle{fancy} \rhead{\fancyplain{}{\leftmark}} \cfoot{\fancyplain{}{\thepage}} \onehalfspacing % - default is \singlespacing, can also have \doublespacing \begin{document} \begin{titlepage} \begin{center} \includegraphics{warwick}\\[1cm] \textsc{\LARGE University of ÌÇÐÄTV}\\[1.5cm] \textsc{\Large MOAC MSc Mini-project}\\[3.5cm] { \huge \bfseries Project Title}\\[2.4cm] \begin{minipage}{0.4\textwidth} \begin{flushleft} \large \emph{Author:}\\ Name \textsc{Surname}\\ \small{Candidate number} \end{flushleft} \end{minipage} \begin{minipage}{0.4\textwidth} \begin{flushright} \large \emph{Supervisor:} \\ Name \textsc{Surname} \end{flushright} \end{minipage} \vfill {\large \today} % - \today gives today's date \end{center} \end{titlepage} \pagenumbering{roman} % - Roman numeral page numbering \tableofcontents % - Adds a table of contents. Can also have \listoffigures and \listoftables for a list of figures and tables respectively. %--------------------------------Abstract--------------------------------% \newpage \begin{abstract} \end{abstract} \newpage \pagenumbering{arabic} % - Arabic numeral page numbering %--------------------------------Introduction--------------------------------% \section{Introduction} % - Begins a new section for table of contents. Use \section*{} for unnumbered sections, \subsection{} for a sub section (up to 4 sub's can be used) \newpage %--------------------------------Materials and Methods--------------------------------% \section{Materials and Methods} \newpage %--------------------------------Results--------------------------------% \section{Results} \newpage %--------------------------------Discussion--------------------------------% \section{Discussion} \newpage %--------------------------------Conclusion--------------------------------% \section{Conclusion} \newpage %--------------------------------Acknowledgements--------------------------------% \section{Acknowledgements} \newpage %--------------------------------Bibliography--------------------------------% \bibliography{Bibliography_name} % If using a .bib file, the name goes here. \bibliographystyle{plain} %\begin{thebibliography}{99} % If not using a .bib file, remove the two lines above and use this instead. %\bibitem{one} Reference %\end{thebibliography} \newpage %--------------------------------Appendix--------------------------------% \appendix % - Begins appendices. \section{Abbreviations used} % Section numbering will restart from A \end{document}