89 lines
2.8 KiB
TeX
89 lines
2.8 KiB
TeX
|
%%% Preamble
|
||
|
\documentclass[11pt, a4paper]{article}
|
||
|
|
||
|
\usepackage[english]{babel} % English language/hyphenation
|
||
|
\usepackage{url}
|
||
|
\usepackage{tabularx}
|
||
|
\usepackage{pdfpages}
|
||
|
\usepackage{float}
|
||
|
|
||
|
\usepackage{graphicx}
|
||
|
\graphicspath{ {../images for report/} }
|
||
|
\usepackage[margin=2cm]{geometry}
|
||
|
|
||
|
\usepackage{hyperref}
|
||
|
\hypersetup{
|
||
|
colorlinks,
|
||
|
citecolor=black,
|
||
|
filecolor=black,
|
||
|
linkcolor=black,
|
||
|
urlcolor=black
|
||
|
}
|
||
|
|
||
|
\usepackage{cleveref}
|
||
|
|
||
|
%%% Custom headers/footers (fancyhdr package)
|
||
|
\usepackage{fancyhdr}
|
||
|
\pagestyle{fancyplain}
|
||
|
\fancyhead{} % No page header
|
||
|
\fancyfoot[L]{} % Empty
|
||
|
\fancyfoot[C]{\thepage} % Pagenumbering
|
||
|
\fancyfoot[R]{} % Empty
|
||
|
\renewcommand{\headrulewidth}{0pt} % Remove header underlines
|
||
|
\renewcommand{\footrulewidth}{0pt} % Remove footer underlines
|
||
|
\setlength{\headheight}{13.6pt}
|
||
|
|
||
|
% numeric
|
||
|
\usepackage[style=ieee,sorting=none,backend=biber]{biblatex}
|
||
|
\addbibresource{../main.bib}
|
||
|
|
||
|
% Write the approved title of your dissertation
|
||
|
\title{Automated image classification with expandable models}
|
||
|
|
||
|
% Write your full name, as in University records
|
||
|
\author{Andre Henriques, 6644818}
|
||
|
|
||
|
\date{}
|
||
|
|
||
|
%%% Begin document
|
||
|
\begin{document}
|
||
|
\subsection{Minute Mittings}
|
||
|
\begin{itemize}
|
||
|
\item Discussed progress so far.
|
||
|
\item Discussed code work vs documentation work.
|
||
|
\item Discussed formating of the document.
|
||
|
\item Discussed next steps.
|
||
|
\end{itemize}
|
||
|
\subsection{Workplan}
|
||
|
\begin{tabular}{ |m{0.5\textwidth}|m{0.5\textwidth}| }
|
||
|
\hline
|
||
|
Month & Goals \\
|
||
|
\hline
|
||
|
Feburary & \begin{itemize}
|
||
|
\item Add api support.
|
||
|
\item Start working on expandable models generation
|
||
|
\item Start documenting the design process
|
||
|
\item Improve Literature review
|
||
|
\item Start documenting results
|
||
|
\end{itemize} \\
|
||
|
\hline
|
||
|
March & \begin{itemize}
|
||
|
\item Create systems to expand the expandable models and contract models
|
||
|
\item Continue documenting the design process
|
||
|
\item Review draft submissions
|
||
|
\end{itemize} \\
|
||
|
\hline
|
||
|
April & \begin{itemize}
|
||
|
\item Basic final report finish
|
||
|
\item Create systems to expand and reduce expandable models
|
||
|
\end{itemize} \\
|
||
|
\hline
|
||
|
May & \begin{itemize}
|
||
|
\item Finish and submit final report
|
||
|
\end{itemize} \\
|
||
|
\hline
|
||
|
\end{tabular}
|
||
|
\end{document}
|
||
|
|
||
|
|