% ----------------------------------------------------------------------------
% thesis.tex: Template for Master Thesis, PhD Dissertation Proposals and Phd Dissertations
% Northeastern University, Khoury College of Computer Science
%
% This document contains embedded instructions. Each instruction line starts
% with "%%", conversely code options to enable, only start with a single "%"
%% Use ONE of the following options
%% PHD -- PhD Dissertation (default: MS Thesis)
%% proposal -- PhD Dissertation Proposals
%% draft -- label as draft version (default: final)
%% Use this for proposals, leave blank for MS thesis
%% \documentclass[proposal]{macro/khoury_thesis}
\documentclass[PHD]{macro/khoury_thesis}
% --- Global Definitions for title and others ---
%% Enter thesis title
\title{Super-Convincing Thesis/Dissertation Title}
%% Enter thesis author
\author{Hubert Husky}
\nuid{123456789}
%% department name
\dept{Khoury College of Computer Sciences}
%% degree name if not "Master of Science" or "Doctor of Philosophy"
%% should not be needed
%\degree{My Custom Degree Name}
%% area of degree
%% will be used on degree page, change as instructed below:
%% For MS students "Electrical and Computer Engineering"
%% For PhDEE students "Electrical Engineering"
%% For PhDCE students "Computer Engineering"
\degreename{Computer Science}
%% General field in which degree is obtainded (usually same as \degreename{})
\field{Computer Science}
%% Define month when submitted (START writing early or it will be very soon too late :-) )
%% Use full name for months
\submitdate{February 2023}
%Although the template does not generate the signature page, leave the following 13 lines unchanged!
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Add in committee memebers with \committee %%%%%%%%%%%%%%%%%%%%%%%%
%% Define committee member names, except for the advisor, all other names come in alphabetical order (last name)
\principaladviser{Dr. Advisor}
\committee{
{Dr. First member},
{Dr. Second member},
% and so on...
{Dr. Last member}
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% DONOT CHANGE ABOVE (TO HRE) %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% all user defined macros
% outsourced conveniently to keep this file clean
\input{macro/macro}
% --- begin of document ---
\begin{document}
% add a pdf bookmark to the cover page
\pdfbookmark[1]{Cover}{cover}
% --- title page ---
\titlepage
% --- front matter ---
\begin{frontmatter}
% table of content (add bookmark for convenience)
\pdfbookmark[1]{Table of Contents}{contents}
\tableofcontents
\listoffigures
\newpage\ssp
\listoftables
% include a list of Acronyms (comment out if no acronyms are specified)
\input{tex/acronyms.tex}
%% include any of the front matter files that contain text
%% attention the input does cause a page break, the include on
%% the other hand does not
\input{tex/acknowledgments.tex}
\input{tex/abstract.tex}
\end{frontmatter}
% --- body of the document ---
\pagestyle{headings}
%% include each chapter like below
\input{tex/intro.tex}
%% background
%\input{tex/background.tex}
%% conclusion
\input{tex/conclusion.tex}
% --- Bibliography ----
\bibliographystyle{IEEEtran}
%% include bibliography definition
\bibliography{bib/thesis}
% --- Appendix ---
\appendix
\chapter{First Appendix Headline}
\chapter{Second Appendix Headline}
%%include anything you need in the appendix
%\include{appendix/appendix}
% --- Index ----
\printindex
% --- that's it ---
\end{document}
% --- EOF --------------------------------------------------------------------

PDF Preview
Create an account to compile and preview