mirror of
https://github.com/soconnor0919/honors-thesis.git
synced 2026-02-04 21:46:31 -05:00
Add geometry package with explicit margins and remove manual page dimension adjustments. Enable double spacing via setspace and switch to myheadings pagestyle. Redefine \frontmatter to start roman numbering at page 4. Modify \maketitle to set page 3 and use singlespace for the title page. Remove the explicit \frontmatter call from thesis.tex.
67 lines
1.8 KiB
TeX
67 lines
1.8 KiB
TeX
%documentclass{buthesis} %Gives author-year citation style
|
|
\documentclass[numbib, twoadv]{buthesis} %Gives numerical citation style
|
|
%\documentclass[twoadv}{buthesis} %Allows entry of second advisor
|
|
%\usepackage{graphics} %Select graphics package
|
|
\usepackage{graphicx} %
|
|
%\usepackage{amsthm} %Add other packages as necessary
|
|
\begin{document}
|
|
\butitle{A Web-Based Wizard-of-Oz Platform for Collaborative and Reproducible Human-Robot Interaction Research}
|
|
\author{Sean O'Connor}
|
|
\degree{Bachelor of Science}
|
|
\department{Computer Science}
|
|
\advisor{L. Felipe Perrone}
|
|
\advisorb{Brian King}
|
|
\chair{Alan Marchiori}
|
|
\maketitle
|
|
|
|
\acknowledgments{
|
|
(Draft Acknowledgments)
|
|
}
|
|
|
|
\tableofcontents
|
|
|
|
\listoftables
|
|
|
|
\listoffigures
|
|
|
|
\abstract{
|
|
[Abstract goes here]
|
|
}
|
|
|
|
\mainmatter
|
|
|
|
\include{chapters/01_introduction}
|
|
\include{chapters/02_background}
|
|
\include{chapters/03_related_work}
|
|
\include{chapters/04_reproducibility}
|
|
\include{chapters/05_system_design}
|
|
\include{chapters/06_implementation}
|
|
\include{chapters/07_evaluation}
|
|
\include{chapters/08_results}
|
|
\include{chapters/09_discussion}
|
|
\include{chapters/10_conclusion}
|
|
|
|
\backmatter
|
|
%\bibliographystyle{thesis_num} %This uses BU thesis file thesis_num.bst
|
|
%\bibliographystyle{abbrvnat}
|
|
\bibliographystyle{unsrtnat}
|
|
%\bibliographystyle{plainnat}
|
|
|
|
%%%%Use following line if bibtex is being used.
|
|
\bibliography{refs.bib}
|
|
|
|
|
|
%%%Use following if references are being entered by hand.
|
|
%\begin{thebibliography}{99}
|
|
%\bibitem[Smith(2005)]{SMI05}J.~Smith, ``An even better paper,''
|
|
%J.~Better Phys., {\bf 2}, 294 (2005).
|
|
%\bibitem[Ligare(2004)]{LIG04}M.~Ligare, ``A very good paper,''
|
|
%J.~Good Phys., {\bf 2}, 294 (2004).
|
|
%\end{thebibliography}
|
|
|
|
\appendix
|
|
\include{chapters/app_materials}
|
|
\include{chapters/app_tech_docs}
|
|
|
|
\end{document}
|