Undergraduate Thesis Template
Author
Anonymous undergraduate
Last Updated
6年前
License
Creative Commons CC BY 4.0
Abstract
Thesis template inspired from an Overleaf template. Ready to use for Undergraduate Thesis. Citation style: ACS
Thesis template inspired from an Overleaf template. Ready to use for Undergraduate Thesis. Citation style: ACS
% Thesis path: /Volumes/GoogleDrive/My Drive/Princeton/Senior/Spring Semester/Thesis/Thesis_tex
% DOCUMENT CLASS
\documentclass[oneside,12pt]{Classes/ThesisLaTeX}
% USEFUL PACKAGES
% Commonly-used packages are included by default.
% Refer to section "Book - Useful packages" in the class file "Classes/RoboticsLaTeX.cls" for the complete list.
\usepackage[top=1in, bottom=1in, left=1.5in, right=1in]{geometry}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{algorithm}
\usepackage{algorithmic}
\usepackage{multirow}
\usepackage{colortbl}
\usepackage{color}
\usepackage[table]{xcolor}
\usepackage{epigraph}
\usepackage{graphicx}
%\usepackage{subfigure}
\usepackage{caption}
\usepackage{subcaption}
\usepackage{hyperref}
\usepackage{tabularx}
\usepackage{float}
\usepackage{longtable}
\usepackage[pdftex]{graphicx}
\usepackage{pdfpages}
%\usepackage{tabularx}
\usepackage{pdflscape}
\usepackage[acronym,toc]{glossaries}
\usepackage{setspace}
\setstretch{1.5}
%\onehalfspacing
% SPECIAL COMMANDS
% correct bad hyphenation
\hyphenation{op-tical net-works semi-conduc-tor}
\hyphenation{par-ti-cu-lar mo-du-le ge-stu-re}
% INTERLINEA 1.5
%\renewcommand{\baselinestretch}{1.5}
%% ignore slightly overfull and underfull boxes
%\hbadness=10000
%\hfuzz=50pt
% declare commonly used operators
\DeclareMathOperator*{\argmax}{argmax}
% HEADER
\ifpdf
\pdfinfo {/Title (Thesis template)
/Creator (TeX)
/Producer (pdfTeX)
/Author (Barbara Bruno, Fulvio Mastrogiovanni, Xichong Liu)
/CreationDate (D:20141024182500) %format D:YYYYMMDDhhmmss
/ModDate (20190324225900)
/Subject (Example of Thesis Template from Overleaf)
/Keywords (Thesis, Example, LaTex)}
\pdfcatalog {/PageMode (/UseOutlines)
/OpenAction (fitbh) }
\fi
\title{\Large{Your Thesis Tiitle}}
\author{Your Name}
\collegeordept{Department of Chemical and Biological Engineering}
\university{Princeton University}
\crest{\includegraphics[width=40mm]{Figures/princeton_shield.png}}
% nome relatore tesi
\supervisor{Your Advisor Ph.D.}
% DECLARATION
% Use the following command to change the declaration text:
%\renewcommand{\submittedtext}{INSERT NEW TEXT HERE}
\degree{Bachelor of Science in Engineering}
\degreedate{April 29, 2019}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\makeglossaries
\loadglsentries{glossary}
\begin{document}
\captionsetup[figure]{labelfont={bf},name={Figure},labelsep=space}
% A page with the abstract and running title and author etc may be
% required to be handed in separately. If this is not so, comment
% the following 3 lines:
% \begin{abstractseparate}
% \input{Abstract/abstract}
% \end{abstractseparate}
\begin{spacing}{2}
\maketitle
\end{spacing}
% add an empty page after title page
\newpage\null\thispagestyle{empty}\newpage
% set the number of sectioning levels that get number and appear in the contents
\setcounter{secnumdepth}{3}
\setcounter{tocdepth}{3}
\frontmatter
\include{Acknowledgement/acknowledgement}
\include{Dedication/dedication}
\include{Abstract/abstract}
\tableofcontents
\printglossary[title=List of Acronyms,type=\acronymtype]
%\printglossary % Print the nomenclature
%\addcontentsline{toc}{chapter}{Nomenclature}
\mainmatter
\include{Introduction/introduction}
\include{Methods/methods}
\include{Results/results}
\include{Discussion/discussion}
\include{Conclusions/conclusions}
\include{References/references}
%\appendix
%\include{Appendix1/appendix1}
%\include{Appendix2/appendix2}
%\bibliographystyle{Classes/RoboticsBiblio} % bibliography style
\end{document}