Manuscript Format Template for University of Windsor MSc and Ph.D. (aka paper-based format). Prepared by Sherif Saad from School of Computer Science
\documentclass[12pt,oneside,final]{vlsithesis}
\input{includes.tex}
\title{Thesis Title}
\author{Your Name}
\degree{Master of Science}
\doctype{Thesis}
\dept{School of Computer Science}
\numberofmembers{3}
\membera{Initial. last Name}
\depta{Department of Electrical and Computer Engineering}
\memberb{Initial. Last Name}
\deptb{School of Computer Science}
\memberc{Initial. Last Name, Advisor}
\deptc{School of Computer Science}
\defenseyear{2020}
\defensedate{March 17, 2019} %Change the date here!
\usepackage{makecell}
\renewcommand\theadfont{\bfseries\sffamily}
\usepackage{algorithm}
\usepackage{algorithmic}
\renewcommand{\algorithmicrequire}{\textbf{Input:}}
\renewcommand{\algorithmicensure}{\textbf{Output:}}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{graphicx}
\usepackage{subfigure}
\usepackage{verbatim}
\usepackage{setspace}
\usepackage{multirow}
\usepackage{xcolor}
\usepackage{float}
\usepackage{caption}
%\usepackage{url}
\PassOptionsToPackage{hyphens}{url}\usepackage{hyperref}
\usepackage{footnote}
\usepackage{dsfont}
%\usepackage{pgfplots}
%\usepackage{subfig}
%\usepackage{subfig}
%s\usepackage{unicode-math}
%\usepackage{nomencl}
\usepackage{rotating}
\usepackage{tabularx}
\newtheorem{Definition}{Definition}
\graphicspath{{Fig/}{figures/}}
\renewcommand{\figurename}{Fig.}
\renewcommand{\tablename}{Table}
\renewcommand\arraystretch{1.68}
\captionsetup[table]{skip=10pt}
\newtheorem{theorem}{Theorem}
\let\counterwithout\relax
\let\counterwithin\relax
\usepackage{chngcntr}
\counterwithin{table}{section}
\counterwithin{figure}{section}
\counterwithin{algorithm}{section}
\setcounter{tocdepth}{4}
\setcounter{secnumdepth}{4}
\usepackage{listings}
\usepackage{color}
\definecolor{lightgray}{rgb}{.9,.9,.9}
\definecolor{darkgray}{rgb}{.4,.4,.4}
\definecolor{purple}{rgb}{0.65, 0.12, 0.82}
\lstdefinelanguage{Javascript}{
keywords={break, case, catch, continue, debugger, default, delete, do, else, false, finally, for, function, if, in, instanceof, new, null, return, switch, this, throw, true, try, typeof, var, void, while, with, do, if, in, for, let, new, try, var, case, else, enum, eval, null, this, true, void, with, await, break, catch, class, const, false, super, throw, while, yield, delete, export, import, public, return, static, switch, typeof, default, extends, finally, package, private, continue, debugger, function, arguments, interface, protected, implements, instanceof},
morecomment=[l]{//},
morecomment=[s]{/*}{*/},
morestring=[b]',
morestring=[b]",
ndkeywords={class, export, boolean, throw, implements, import, this},
keywordstyle=\color{blue}\bfseries,
ndkeywordstyle=\color{darkgray}\bfseries,
identifierstyle=\color{black},
commentstyle=\color{purple}\ttfamily,
stringstyle=\color{red}\ttfamily,
sensitive=true
}
\lstset{
language=Javascript,
backgroundcolor=\color{lightgray},
extendedchars=true,
basicstyle=\footnotesize\ttfamily,
showstringspaces=false,
showspaces=false,
tabsize=2,
breaklines=true,
showtabs=false,
captionpos=b
}
\makeatletter
\newcommand{\chapterauthor}[1]{%
{\parindent0pt\vspace*{-80pt}%
\linespread{1.1}\large\scshape#1%
\par\nobreak\vspace*{35pt}}
\@afterheading%
}
\newcommand{\chapterpub}[1]{%
{\baselineskip=.5\baselineskip\parindent0pt\vspace*{-25pt}%
\linespread{1.1}#1%
\par\nobreak\vspace*{35pt}}
\@afterheading%
}
\makeatother
%\usepackage[numbers, sectionbib]{natbib}
%\usepackage{chapterbib}
\usepackage[style=numeric,backend=biber]{biblatex}
\addbibresource{biball.bib}
\begin{document}
\maketitle
\makeapproval
\pagenumbering{roman}
\setcounter{page}{3}
\makedeclaration
\input{sections/Abstract.tex}
\acknowledgements{
Here I would like to acknowledge the invaluable mentorship of my supervisor ...
}
\tableofcontents
\listoftables
\listoffigures
%\listofappendix
\input{sections/Introduction.tex}
\input{sections/Chapter2.tex}
\input{sections/Chapter3.tex}
\input{sections/Chapter4.tex}
\input{sections/Chapter5.tex}
\input{sections/Chapter6.tex}
\input{sections/Conclusion.tex}
\clearpage
\addcontentsline{toc}{chapter}{VITA AUCTORIS}
{\thispagestyle{plain}
\begin{flushleft}
\LARGE\textbf{VITA AUCTORIS}
\end{flushleft}
\begin{table}[htbp]
\begin{tabular}{p{0.3\linewidth}p{0.5\linewidth}}
NAME: & Your Name \\
PLACE OF BIRTH: & Windsor, ON \\
YEAR OF BIRTH: & 2000 \\
EDUCATION: &
\vskip1em
University of Windsor, B.Sc in Computer Science, Windsor, Ontario, 2019
\vskip1em
University of Windsor, M.Sc in Computer Science, Windsor, Ontario, 2020 \\
\end{tabular}
\end{table}
}
\end{document}