% ----------
% A LaTeX template for course project reports
%
% This template is modified from "Tech Report ala MIT AI Lab (1981)"
%
% ----------
\documentclass[12pt, letterpaper, twoside]{article}
\usepackage{geometry}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage[runin]{abstract}
\usepackage{titling}
\usepackage{booktabs}
\usepackage{fancyhdr}
\usepackage{helvet}
\usepackage{csquotes}
\usepackage{graphicx}
\usepackage{blindtext}
\usepackage{parskip}
\usepackage{etoolbox}
\input{preamble.tex}
% ----------
% Variables
% ----------
\title{\textbf{Computational Photography Course Project:\\Our Awesome Project on Image Matting}} % Full title of your tech report
\runningtitle{On Image Matting} % Short title
\author{Student Name 1 \and Student Name 2 \and Student Name 3} % Full list of authors
\runningauthor{Student Name 3 et al.} % Short list of authors
\affiliation{Ontario Tech University} % Affiliation e.g. University or Company
\department{Faculty of Science, Computer Science} % Department or Office
\memoid{Project Group: 1} % Project group ID that were shared with the class earlier.
\theyear{2023} % year of the tech report
\mydate{December 3, 2028} %the date
% ----------
% actual document
% ----------
\begin{document}
\maketitle
\begin{abstract}
\noindent
\blindtext[1] % Delete this line. It just creates some text for display purposes.
% Uncomment the following to add keywords as needed
% \keywords{Keyword1, Keyword2, Keyword3}
\end{abstract}
\vspace{2.5cm}
% Uncomment the following to add thanks.
% {\footnotesize
% \noindent
% Special thanks to \textbf{Person 1} and \textbf{Affiliation A} for financial support for this project.
% }
\thispagestyle{firstpage}
\pagebreak
% ----------
% End of first page
% ----------
\newgeometry{} % Redefine geometries (normal margins)
\section{Introduction}
\label{sec:intro}
\blindmathpaper % Delete this line. It just creates some text for display purposes.
\section{Conclusions}
\label{sec:conc}
Tech Report writing is an art.
% Uncomment following to add an acknowledgement section
% \section*{Acknowledgements}
% Thanks again to \textbf{Person 1} and \textbf{Affiliation A} for their financial support.
% ----------
% Bibliography
% ----------
% Uncomment the following and add your references into biblio.bib file
% \bibliography{./biblio.bib}
% \bibliographystyle{abbrv}
\appendix
\section{An appendix}
\blindtext % Delete this line. It just creates some text for display purposes.
\section{Another appendix}
\subsection*{Subsectioning in appendix}
Some more text, and a list:
\blindenumerate % Delete this line. It just creates some text for display purposes.
\end{document}
% ----------