IIIT Hyderabad MS/PhD Thesis
Autor
Ayush Kumar Dwivedi
Letzte Aktualisierung
vor einem Jahr
Lizenz
Creative Commons CC BY 4.0
Abstrakt
Thesis template for MS/PhD students at IIIT Hyderabad, India.
\documentclass[11pt]{book}
\usepackage{amsmath,amssymb,amsfonts}
\usepackage{iiit_thesis}
\usepackage{cite}
\usepackage{times}
\usepackage{graphicx}
\usepackage{setspace}
\usepackage{enumitem}
\usepackage{tabularx}
\usepackage{subfigure}
\usepackage{notoccite}
\usepackage{afterpage}
\usepackage{xcolor}
\usepackage{algorithm}
\usepackage{algpseudocode}
\usepackage{multirow}
\usepackage[hidelinks]{hyperref}
\usepackage[toc,page]{appendix}
\usepackage{comment}
\usepackage{pdfpages}
\usepackage{siunitx}
\graphicspath{{images/}{./}} % To include images in other directories
%------------------------------------------------
% To reduce separation in itemize and enumerate
% \setlist[itemize]{noitemsep} % can include 'nolistsep' also
% \setlist[enumerate]{noitemsep}
%------------------------------------------------
% Settings for Abbreviations and Symbols list
\usepackage[style=super,automake,nogroupskip,nopostdot,symbols,sort=standard,toc=false]{glossaries-extra}
\setglossarystyle{super}
\setabbreviationstyle[acronym]{long-short}
% \centering
\renewenvironment{theglossary}%
{\tablehead{}\tabletail{}%
\begin{supertabular}{p{4cm}p{\glsdescwidth}}}%
{\end{supertabular}}%
\makeglossaries
\loadglsentries{acronyms}
%-------------------------------------------------
\long\def\symbolfootnote[#1]#2{\begingroup%
\def\thefootnote{\fnsymbol{footnote}}\footnote[#1]{#2}\endgroup}
\renewcommand{\baselinestretch}{1.2}
\onecolumn
%
\makeatletter
\def\ignorecitefornumbering#1{%
\begingroup
\@fileswfalse
#1% % do \cite comand
\endgroup
}
\makeatother
%-------------------------------------------------
% Custom commands
\newcommand{\p}{\mathbb{P}}
\newcommand{\gt}{\gamma_{\text{th}}}
\newcommand\txtblue[1]{{\color{blue}#1}}
%--------------------------------------------------------
\begin{document}
\pagenumbering{roman}
%% TITLE PAGE
\input{sections/titlePage.tex}
%----------COPYRIGHT PAGE--------------------
\newpage
\thispagestyle{empty}
\renewcommand{\thesisdedication}{{\large Copyright \copyright~Firstname Lastname, 2023\\}{\large All Rights Reserved\\}}
\thesisdedicationpage
%------------------------------------------------
\input{sections/certificate.tex}
\mastersthesis
% \renewcommand{\baselinestretch}{1.5}
%
% ABSTRACT PAGE
\chapter*{Abstract}
\label{ch:abstract}
\input{sections/abstract.tex}
%
\tableofcontents
\listoffigures
\let\cleardoublepage\clearpage
\listoftables
\printglossary[type=\acronymtype,title=Abbreviations,nonumberlist]
\printunsrtglossary[type=symbols]
%--------------------------------------------------------
% 'List of Publications'
\chapter*{List of Related Publications}
\label{ch:relatedPubs}
\input{sections/relatedPapers.tex}
%--------------------------------------------------------
\chapter{Introduction}
\label{ch:intro}
\input{sections/ch0.tex}
%--------------------------------------------------------
\chapter{Title of the chapter goes here...}
\label{ch:ch1}
\input{sections/ch1.tex}
%--------------------------------------------------------
\chapter{Conclusion}
\label{ch:conc}
\input{sections/conclusion.tex}
%--------------------------------------------------------
\bibliographystyle{IEEEtran}
\bibliography{IEEEabrv,cite.bib}{}
% %--------------------------------------------------------
% % 'Publication 1'
% \chapter*{Publications}
% \chapter*{Publication 1}
% \addtocontents{toc}{\protect{\addvspace{3.0ex plus 1pt}}}
% \addcontentsline{toc}{chapter}{\protect{Publication 1}}
% \input{sections/paper1.tex}
% \includepdf[pages={-}]{papers/paper1.pdf}
% %
% %--------------------------------------------------------
% % 'Publication 2'
% \chapter*{Publication 2}
% \addtocontents{toc}{\protect{\addvspace{3.0ex plus 1pt}}}
% \addcontentsline{toc}{chapter}{\protect{Publication 2}}
% \input{sections/paper2.tex}
% \includepdf[pages={-}]{papers/paper2.pdf}
\end{document}