mirror of
https://github.com/OSURoboticsClub/Rover_2017_2018.git
synced 2025-11-08 18:21:15 +00:00
Initial commit of status report
This commit is contained in:
6347
cs_capstone_documents/fall_progress_report/IEEEtran.cls
Normal file
6347
cs_capstone_documents/fall_progress_report/IEEEtran.cls
Normal file
File diff suppressed because it is too large
Load Diff
Binary file not shown.
|
After Width: | Height: | Size: 13 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 45 KiB |
Binary file not shown.
@@ -0,0 +1 @@
|
|||||||
|
\section{Goals}
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
\section{Interesting Code}
|
||||||
8802
cs_capstone_documents/fall_progress_report/latexmk.pl
Normal file
8802
cs_capstone_documents/fall_progress_report/latexmk.pl
Normal file
File diff suppressed because it is too large
Load Diff
31
cs_capstone_documents/fall_progress_report/latexmkrc
Normal file
31
cs_capstone_documents/fall_progress_report/latexmkrc
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
# This config is copied from overleaf so output there will match compiled output here
|
||||||
|
|
||||||
|
# support for the glossaries package:
|
||||||
|
add_cus_dep('glo', 'gls', 0, 'makeglossaries');
|
||||||
|
add_cus_dep('acn', 'acr', 0, 'makeglossaries');
|
||||||
|
sub makeglossaries {
|
||||||
|
system("makeglossaries \"$_[0]\"");
|
||||||
|
}
|
||||||
|
|
||||||
|
# support for the nomencl package:
|
||||||
|
add_cus_dep('nlo', 'nls', 0, 'makenlo2nls');
|
||||||
|
sub makenlo2nls {
|
||||||
|
system("makeindex -s nomencl.ist -o \"$_[0].nls\" \"$_[0].nlo\"");
|
||||||
|
}
|
||||||
|
|
||||||
|
# from the documentation for V. 2.03 of asymptote:
|
||||||
|
sub asy {return system("asy \"$_[0]\"");}
|
||||||
|
add_cus_dep("asy","eps",0,"asy");
|
||||||
|
add_cus_dep("asy","pdf",0,"asy");
|
||||||
|
add_cus_dep("asy","tex",0,"asy");
|
||||||
|
|
||||||
|
# metapost rule from http://tex.stackexchange.com/questions/37134
|
||||||
|
add_cus_dep('mp', '1', 0, 'mpost');
|
||||||
|
sub mpost {
|
||||||
|
my $file = $_[0];
|
||||||
|
my ($name, $path) = fileparse($file);
|
||||||
|
pushd($path);
|
||||||
|
my $return = system "mpost $name";
|
||||||
|
popd();
|
||||||
|
return $return;
|
||||||
|
}
|
||||||
18
cs_capstone_documents/fall_progress_report/makefile
Normal file
18
cs_capstone_documents/fall_progress_report/makefile
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
# Makefile created by Corwin Perren
|
||||||
|
# Generic makefile for all LaTeX projects downloaded from overleaf
|
||||||
|
#
|
||||||
|
# All this makefile does is call perl against latexmkrc, which is
|
||||||
|
# the latex equivalent of make
|
||||||
|
|
||||||
|
LATEXMK_COMPILE_FLAGS = -pdf
|
||||||
|
LATEXMK_CLEAN_FLAGS = -c
|
||||||
|
|
||||||
|
.DEFAULT_GOAL := all
|
||||||
|
|
||||||
|
all: latexmk_output clean
|
||||||
|
|
||||||
|
latexmk_output:
|
||||||
|
perl latexmk.pl $(LATEXMK_COMPILE_FLAGS)
|
||||||
|
|
||||||
|
clean:
|
||||||
|
perl latexmk.pl $(LATEXMK_CLEAN_FLAGS)
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
\section{Problems / Solutions}
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
\subsection{Deliverables}
|
||||||
|
\subsubsection{Github Repository}
|
||||||
|
\subsubsection{Problem Statement Document}
|
||||||
|
\subsubsection{Requirements Document}
|
||||||
|
\subsubsection{Technology Review Document}
|
||||||
|
\subsubsection{Software Design Document}
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
\section{Progress}
|
||||||
|
\input{progress/summary}
|
||||||
|
\input{progress/deliverables}
|
||||||
|
\input{progress/weekly_progress}
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
\subsection{Summary}
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
\subsection{Weekly Progress Breakdown}
|
||||||
|
\subsubsection{Week 1}
|
||||||
|
\begin{itemize}
|
||||||
|
\item Activities
|
||||||
|
\item Problems / Solutions
|
||||||
|
\end{itemize}
|
||||||
|
\subsubsection{Week 2}
|
||||||
|
\subsubsection{Week 3}
|
||||||
|
\subsubsection{Week 4}
|
||||||
|
\subsubsection{Week 5}
|
||||||
|
\subsubsection{Week 6}
|
||||||
|
\subsubsection{Week 7}
|
||||||
|
\subsubsection{Week 8}
|
||||||
|
\subsubsection{Week 9}
|
||||||
|
\subsubsection{Week 10}
|
||||||
137
cs_capstone_documents/fall_progress_report/progress_report.tex
Normal file
137
cs_capstone_documents/fall_progress_report/progress_report.tex
Normal file
@@ -0,0 +1,137 @@
|
|||||||
|
\documentclass[onecolumn, draftclsnofoot, 10pt, compsoc]{IEEEtran}
|
||||||
|
\usepackage{graphicx}
|
||||||
|
\graphicspath{{./figures/}}
|
||||||
|
|
||||||
|
\usepackage{url}
|
||||||
|
\usepackage{setspace}
|
||||||
|
\usepackage{multicol}
|
||||||
|
\usepackage{pdflscape}
|
||||||
|
\usepackage{pdfpages}
|
||||||
|
|
||||||
|
\usepackage{geometry}
|
||||||
|
\geometry{textheight=9.5in, textwidth=7in}
|
||||||
|
|
||||||
|
% \overfullrule=2in
|
||||||
|
|
||||||
|
% 1. Fill in these details
|
||||||
|
\def \CapstoneTeamName{ Ground Station Software Team}
|
||||||
|
\def \CapstoneTeamNumber{ 30}
|
||||||
|
\def \GroupMemberOne{ Kenneth Steinfeldt}
|
||||||
|
\def \GroupMemberTwo{ Christopher Pham}
|
||||||
|
\def \GroupMemberThree{ Corwin Perren}
|
||||||
|
\def \CapstoneProjectName{ OSU Robotics Club\\Mars Rover Ground Station}
|
||||||
|
\def \CapstoneSponsorCompany{ OSU Robotics Club}
|
||||||
|
\def \CapstoneSponsorPerson{ Nick McComb}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
%Personal \newcommands
|
||||||
|
|
||||||
|
\newcommand{\functRequ}[4]{
|
||||||
|
\item #1%
|
||||||
|
\par
|
||||||
|
\begin{itemize}
|
||||||
|
\item \textit{Description:} #2.%
|
||||||
|
\item \textit{Rationale:} #3.%
|
||||||
|
\item \textit{Dependencies:} #4%
|
||||||
|
\end{itemize}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
% 2. Uncomment the appropriate line below so that the document type works
|
||||||
|
\def \DocType{ %Problem Statement
|
||||||
|
%Requirements Document
|
||||||
|
%Technology Review
|
||||||
|
%Design Document
|
||||||
|
Progress Report
|
||||||
|
}
|
||||||
|
|
||||||
|
\newcommand{\NameSigPair}[1]{
|
||||||
|
\par
|
||||||
|
\makebox[2.75in][r]{#1}
|
||||||
|
\hfill
|
||||||
|
\makebox[3.25in]{
|
||||||
|
\makebox[2.25in]{\hrulefill}
|
||||||
|
\hfill
|
||||||
|
\makebox[.75in]{\hrulefill}
|
||||||
|
}
|
||||||
|
\par\vspace{-12pt}
|
||||||
|
\textit{
|
||||||
|
\tiny\noindent
|
||||||
|
\makebox[2.75in]{}
|
||||||
|
\hfill
|
||||||
|
\makebox[3.25in]{
|
||||||
|
\makebox[2.25in][r]{Signature}
|
||||||
|
\hfill
|
||||||
|
\makebox[.75in][r]{Date}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
% 3. If the document is not to be signed, uncomment the command below
|
||||||
|
\renewcommand{\NameSigPair}[1]{#1}
|
||||||
|
|
||||||
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||||
|
\begin{document}
|
||||||
|
\begin{titlepage}
|
||||||
|
\pagenumbering{gobble}
|
||||||
|
\begin{singlespace}
|
||||||
|
% 4. If you have a logo, use this includegraphics command to put it on the coversheet.
|
||||||
|
\begin{minipage}{7in}
|
||||||
|
\centering
|
||||||
|
\hspace*{-.7in}
|
||||||
|
$\vcenter{\hbox{\includegraphics[height=4cm]{Oregon_State_College_of_Engineering_Logo}}}$
|
||||||
|
\hspace*{.2in}
|
||||||
|
$\vcenter{\hbox{\includegraphics[height=2.5cm]{OSURCLogoOrange}}}$
|
||||||
|
\end{minipage}
|
||||||
|
|
||||||
|
\par\vspace{.35in}
|
||||||
|
\centering
|
||||||
|
\scshape{
|
||||||
|
\huge CS Capstone \DocType \par
|
||||||
|
{\large\today}\par
|
||||||
|
\vspace{.5in}
|
||||||
|
\textbf{\Huge\CapstoneProjectName}\par
|
||||||
|
\vfill
|
||||||
|
{\large Prepared for}\par
|
||||||
|
\Huge \CapstoneSponsorCompany\par
|
||||||
|
\vspace{5pt}
|
||||||
|
{\Large\NameSigPair{\CapstoneSponsorPerson}\par}
|
||||||
|
{\large Prepared by }\par
|
||||||
|
Group\CapstoneTeamNumber\par
|
||||||
|
% 5. comment out the line below this one if you do not wish to name your team
|
||||||
|
\CapstoneTeamName\par
|
||||||
|
\vspace{5pt}
|
||||||
|
{\Large
|
||||||
|
\NameSigPair{\GroupMemberOne}\par
|
||||||
|
\NameSigPair{\GroupMemberTwo}\par
|
||||||
|
\NameSigPair{\GroupMemberThree}\par
|
||||||
|
}
|
||||||
|
\vspace{20pt}
|
||||||
|
\begin{abstract}
|
||||||
|
% 6. Fill in your abstract
|
||||||
|
REPLACE THIS
|
||||||
|
|
||||||
|
\end{abstract}
|
||||||
|
}
|
||||||
|
\end{singlespace}
|
||||||
|
\end{titlepage}
|
||||||
|
\newpage
|
||||||
|
\pagenumbering{arabic}
|
||||||
|
\tableofcontents
|
||||||
|
\clearpage
|
||||||
|
|
||||||
|
% Write stuff here....
|
||||||
|
\input{purpose/purpose}
|
||||||
|
\input{goals/goals}
|
||||||
|
\input{progress/progress}
|
||||||
|
\input{problems_solutions/problems_solutions}
|
||||||
|
\input{interesting_code/interesting_code}
|
||||||
|
\input{retrospective/retrospective}
|
||||||
|
|
||||||
|
\end{document}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
\section{Purpose}
|
||||||
@@ -0,0 +1,25 @@
|
|||||||
|
\section{Retrospective}
|
||||||
|
\vspace{1em}
|
||||||
|
\begin{tabular}{| p{0.3\linewidth} | p{0.3\linewidth} | p{0.3\linewidth} |}
|
||||||
|
% Table headings
|
||||||
|
\bf Positives & \bf Deltas & \bf Actions \\
|
||||||
|
|
||||||
|
% All the positives
|
||||||
|
\begin{itemize}
|
||||||
|
\item Positives
|
||||||
|
\end{itemize}
|
||||||
|
|
||||||
|
% All the things we need to change
|
||||||
|
&
|
||||||
|
\begin{itemize}
|
||||||
|
\item Changes
|
||||||
|
\end{itemize}
|
||||||
|
|
||||||
|
% All the actions to make the changes
|
||||||
|
&
|
||||||
|
\begin{itemize}
|
||||||
|
\item Actions to make the changes happen
|
||||||
|
\end{itemize}
|
||||||
|
\end{tabular}
|
||||||
|
|
||||||
|
\end{document}
|
||||||
Reference in New Issue
Block a user