UW Proposal Template
作者:
Sumit Hotchandani
最近上传:
5 个月前
许可:
Creative Commons CC BY 4.0
摘要:
Capstone/Thesis proposal template for University of Washington
\begin
Discover why 18 million people worldwide trust Overleaf with their work.
\begin
Discover why 18 million people worldwide trust Overleaf with their work.
%--------------------
% Packages
% -------------------
\documentclass[12pt,a4paper]{article}
\usepackage[utf8x]{inputenc}
\usepackage[T1]{fontenc}
%\usepackage{gentium}
\usepackage{mathptmx} % Use Times Font
\usepackage{tikz}
\usepackage{enumerate}% http://ctan.org/pkg/enumerate
\usepackage{amssymb}
\usepackage{algpseudocode}
\usepackage{algorithm}
\usepackage{calc} % To reset the counter in the document after title page
\usepackage{enumitem} % Includes lists
\usepackage{bm}
\usepackage{multicol}
\frenchspacing % No double spacing between sentences
\linespread{1.2} % Set linespace
\usepackage[a4paper, lmargin=0.1666\paperwidth, rmargin=0.1666\paperwidth, tmargin=0.1111\paperheight, bmargin=0.1111\paperheight]{geometry} %margins
%\usepackage{parskip}
\usepackage[all]{nowidow} % Tries to remove widows
\usepackage[protrusion=true,expansion=true]{microtype} % Improves typography, load after fontpackage is selected
\usepackage{lipsum} % Used for inserting dummy 'Lorem ipsum' text into the template
\usepackage{listings}
\usepackage{xcolor}
\usepackage{hyperref}
\usepackage{array}
\usepackage{float}
\definecolor{codegreen}{rgb}{0,0.6,0}
\definecolor{codegray}{rgb}{0.5,0.5,0.5}
\definecolor{codepurple}{rgb}{0.58,0,0.82}
\definecolor{backcolour}{rgb}{0.95,0.95,0.92}
\lstdefinestyle{mystyle}{
backgroundcolor=\color{backcolour},
commentstyle=\color{codegreen},
keywordstyle=\color{magenta},
numberstyle=\tiny\color{codegray},
stringstyle=\color{codepurple},
basicstyle=\ttfamily\footnotesize,
breakatwhitespace=false,
breaklines=true,
captionpos=b,
keepspaces=true,
numbers=left,
numbersep=5pt,
showspaces=false,
showstringspaces=false,
showtabs=false,
tabsize=2
}
\renewcommand{\thesection}{\Roman{section}.}
\renewcommand{\thesubsection}{\Alph{subsection}.}
%-----------------------
% Set pdf information and add title, fill in the fields
%-----------------------
\hypersetup{
pdfsubject = {},
pdftitle = {},
pdfauthor = {}
}
%-----------------------
% Begin document
%-----------------------
\begin{document} %All text i dokumentet hamnar mellan dessa taggar, allt ovanför är formatering av dokumentet
\def\course{A Capstone Project Proposal
submitted in partial fulfillment of the
requirements of the degree of
} %Course
\def\degree{Master of Science in Computer Science \& Software Engineering}
\def\thetitle{[project title]} % Report Title
\def\date{\today}
% TITLE PAGE
\begin{center}
{\Large\textbf{{\thetitle}}}\\[.5cm]
{\Large{[your name]}}\\[3cm]
{\Large{\course}}\\[.5cm]
{\Large{\degree}}\\[3cm]
% University Name
{\color[RGB]{51, 0, 111}\Large{\textbf{University of Washington}}}\\[.5cm]
{\date}\\[3cm]
% University Name
{\Large{\textbf{Project Committee}}}\\[.5cm]
{[faculty 1], Committee Chair}\\[.5cm]
{[faculty 2], Committee Member}\\[.5cm]
{[faculty 3], Committee Member}\\[.5cm]
\end{center}
\thispagestyle{empty}
\pagebreak
\section{Introduction}
\section{Project Goals / Vision}
\subsection{Goal(s) of Completed Work}
\subsection{Identification of Problem or Opportunity}
\section{Criteria}
\subsection{Level of Success}
\begin{enumerate}
\item \textbf{Minimum: }
\item \textbf{Expected: }
\item \textbf{Aspirational: }
\end{enumerate}
\subsection{Quality and Associated Measurement Metrics}
\subsection{Targets}
\section{Positioning of Project}
\section{Project Plan}
\subsection{Detailed Milestones for Key Deliverables}
\subsection{Work to be Completed}
\section{Constraints, Risks, and Resources}
\subsection{Key Constraints}
\subsection{Resources Needed for Success}
\subsection{Anticipated Risks}
\pagebreak
\begin{thebibliography}{9}
\bibitem{itemname}
item reference - AMA
\end{thebibliography}
\end{document}