Assignment Template for Yale CPSC 459-559
Author
Marynel Vazquez
Last Updated
5 years ago
License
Creative Commons CC BY 4.0
Abstract
Example template for course assignments
Example template for course assignments
\documentclass[a4paper]{article}
\input{style/head.tex}
%-------------------------------
% TITLE VARIABLES (identify your work!)
%-------------------------------
\newcommand{\yourname}{YOURNAME} % replace YOURNAME with your name
\newcommand{\yournetid}{YOURNETID} % replace YOURNETID with your NetID
\newcommand{\youremail}{YOUREMAIL} % replace YOUREMAIL with your email
\newcommand{\assignmentnumber}{X} % replace X with assignment number
\begin{document}
%-------------------------------
% TITLE SECTION (do not modify unless you really need to)
%-------------------------------
\input{style/header.tex}
%-------------------------------
% ASSIGNMENT CONTENT (add your responses)
%-------------------------------
\section{Part I} % this is an example
\subsection{Task 1}
\blindtext % remove \blindtext and add your answer
\subsection{Task 2}
\blindtext % remove \blindtext and add your answer
\section{Part I} % this is another example
\subsection{Task 1}
\blindtext % remove \blindtext and add your answer
\subsection{Task 2}
\blindtext % remove \blindtext and add your answer
\cite{DUMMY1} % example citation. remove for real assignment
%------------------------------------------------
\bibliographystyle{acm}
\bibliography{references} % citation records are in the references.bib document
\end{document}