\documentclass[12pt,a4paper]{report}
% Packages
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{lmodern} % Use Latin Modern fonts (vector, not bitmap)
\usepackage{graphicx}
\usepackage{amsmath}
\usepackage[
colorlinks=true,
linkcolor=black,
citecolor=blue,
urlcolor=blue
]{hyperref}
\usepackage[margin=1in]{geometry}
\usepackage{cite}
% Graphics path
\graphicspath{{images/}}
% Document information
\title{Document Title}
\author{Author Name}
\date{\today}
\begin{document}
% Title page
\maketitle
% Abstract
\begin{abstract}
This is the abstract of the document. Provide a brief summary of your work here.
This is gonna be about autocompletion (\textit{tabbing} your way to the victory).
% Add image from the folder
\begin{figure}[htbp]
\centering
\includegraphics[width=0.8\textwidth]{pixellated_GNU.png}
\caption{Example figure caption}
\label{fig:example_figure}
\end{figure}
\end{abstract}
% Table of contents
\tableofcontents
\listoffigures
\listoftables
% Chapters
\include{chapters/chapter1}
\include{chapters/chapter2}
\include{chapters/chapter3}
\include{chapters/chapter4}
% Bibliography
\bibliographystyle{plain}
\bibliography{references}
\end{document}

PDF Preview
Create an account to compile and preview