Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewGuenther committed Aug 14, 2014
0 parents commit e657919
Show file tree
Hide file tree
Showing 8 changed files with 1,543 additions and 0 deletions.
1 change: 1 addition & 0 deletions abstract.tex
@@ -0,0 +1 @@
Your abstract goes in here
5 changes: 5 additions & 0 deletions acknowledgements.tex
@@ -0,0 +1,5 @@
\noindent
Thanks to:
\begin{itemize}
\item Andrew Guenther, for uploading this template
\end{itemize}
1 change: 1 addition & 0 deletions appendix-outline.tex
@@ -0,0 +1 @@

5 changes: 5 additions & 0 deletions bibliography.bib
@@ -0,0 +1,5 @@
@misc{fft,
title={Cal {P}oly {G}ithub},
note={\url{http://www.github.com/CalPoly}}
}

1 change: 1 addition & 0 deletions chapter-outline.tex
@@ -0,0 +1 @@

10 changes: 10 additions & 0 deletions frontmatter.tex
@@ -0,0 +1,10 @@
\title{Your Thesis Title}
\author{Your Name}
\degreemonth{June} \degreeyear{2014} \degree{Master of Science}
\defensemonth{June} \defenseyear{2014}
\numberofmembers{2}
\chair{Professor Alexander Dekhtyar, Ph.D. \linebreak Department of Computer Science}
\othermemberA{Associate Professor Aaron Keen, Ph.D. \linebreak Department of Computer Science}
\othermemberB{Professor Franz Kurfess, Ph.D. \linebreak Department of Computer Science}
\field{Computer Science} \campus{San Luis Obispo}
\copyrightyears{seven}
105 changes: 105 additions & 0 deletions main.tex
@@ -0,0 +1,105 @@
\documentclass[12pt]{ucthesis}

\usepackage{etex}
\usepackage[morefloats=125]{morefloats}
\usepackage[hyphens]{url}
\usepackage[breaklinks=true]{hyperref}
\usepackage{subfig}
\usepackage{graphicx}
\usepackage{tabularx}
\usepackage{amssymb}
\usepackage{amsmath}
\usepackage[letterpaper]{geometry}
\usepackage[overload]{textcase}
\usepackage{color}
\usepackage[nonumberlist,toc]{glossaries}
\usepackage{wrapfig}
\usepackage{longtable}
\usepackage{morefloats}
\usepackage{float}
\usepackage{listings}
\usepackage{makecell}
\usepackage[titletoc]{appendix}
\usepackage{cleveref}
\usepackage[]{algorithm2e}

\makeindex
\makeglossaries

\bibliographystyle{abbrv}

\setlength{\parindent}{0.25in} \setlength{\parskip}{6pt}
\geometry{verbose,nohead,tmargin=1in,bmargin=1in,lmargin=1.5in,rmargin=1in}
\setcounter{tocdepth}{2}

% Different font in captions (single-spaced, bold) ------------
\newcommand{\captionfonts}{\small\bf\ssp}

\newcommand{\mycaption}[2]{\caption[#1 --- #2]{#1 --- #2}}

\makeatletter % Allow the use of @ in command names
\long\def\@makecaption#1#2{%
\vskip\abovecaptionskip
\sbox\@tempboxa{{\captionfonts #1: #2}}%
\ifdim \wd\@tempboxa >\hsize
{\captionfonts #1: #2\par}
\else
\hbox to\hsize{\hfil\box\@tempboxa\hfil}%
\fi
\vskip\belowcaptionskip}
\makeatother % Cancel the effect of \makeatletter
% ---------------------------------------

% Define Appendix refs
\crefname{app}{appendix}{appendices}
\Crefname{app}{Appendix}{Appendices}

\begin{document}

% Declarations for Front Matter
\input{frontmatter}

\maketitle

\begin{frontmatter}

% Custom made for Cal Poly (by Mark Barry, modified by Andrew Tsui).
\copyrightpage

% Custom made for Cal Poly (by Andrew Tsui).
\committeemembershippage

\begin{abstract}
\input{abstract}
\end{abstract}

\begin{acknowledgements}
\input{acknowledgements}
\end{acknowledgements}

\tableofcontents

\listoftables

\listoffigures

\end{frontmatter}

\pagestyle{plain}

\renewcommand{\baselinestretch}{1.66}

\input{chapter-outline}

\clearpage
\begin{flushleft}
\nocite{*}
\bibliography{bibliography}
\bibliographystyle{plain}
\end{flushleft}

\begin{appendices}
\input{appendix-outline}
\end{appendices}

\end{document}

0 comments on commit e657919

Please sign in to comment.