Brunel University - Bachelor Dissertation Template
Author
Alina M
Last Updated
4 years ago
License
Creative Commons CC BY 4.0
Abstract
Simple template for bachelor final year project report.
Simple template for bachelor final year project report.
\documentclass[12pt,twoside]{report}
\usepackage[utf8]{inputenc}
\usepackage{graphicx}
\graphicspath{ {images/} }
\usepackage{caption}
\usepackage{subcaption}
\usepackage[a4paper,width=150mm,top=25mm,bottom=25mm,bindingoffset=6mm]{geometry}
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhead{}
\fancyhead[RO,LE]{Thesis Title - change here to your report title}
\fancyfoot{}
\fancyfoot[LE,RO]{\thepage}
\fancyfoot[LO,CE]{Chapter \thechapter}
\fancyfoot[CO,RE]{Author Name}
\renewcommand{\headrulewidth}{0.4pt}
\renewcommand{\footrulewidth}{0.4pt}
\usepackage{tikz}
\usetikzlibrary{fit, positioning}
\usepackage{lipsum}
\usepackage{hyperref}
\bibliographystyle{ieeetr}
\usepackage{biblatex}
\addbibresource{references.bib}
\begin{document}
%TC:ignore
\input{titlepage}
\input{abstract}
\input{chapters/Acknowledgements}
\tableofcontents
\listoffigures
\listoftables
%TC:endignore
\chapter{Introduction}
\input{chapters/chapter01-introduction}
\chapter{Background}
\input{chapters/chapter02}
\chapter{Methodology (Or Approach)}
\input{chapters/chapter03}
\chapter{Design (Or What you did Part One)}
\input{chapters/chapter04}
\chapter{Implementation (Or What you did Part Two)}
\input{chapters/chapter04}
\chapter{Testing and Evaluation}
\input{chapters/chapter06}
\chapter{Conclusion}
\input{chapters/conclusion}
%TC:ignore
\appendix
\chapter{Personal Reflection }
\input{chapters/appendixA}
\chapter{Appendices}
\input{chapters/appendixB}
\chapter{Ethics approval}
\input{chapters/appendixC}
\printbibliography
%TC:endignore
\end{document}