Dissertation Report Template (CS-BHU)
Author
Pradyumna Krishna
Last Updated
6 months ago
License
Creative Commons CC BY 4.0
Abstract
A latex template for Dissertation Report of Department of Computer Science, Banaras Hindu University .
\documentclass[12pt]{report}
\usepackage{report}
\usepackage[acronym]{glossaries}
\usepackage{rotating}
\usepackage{float}
\usepackage{siunitx}
\usepackage{array}
\usepackage[justification=centering]{caption}
\captionsetup[figure]{font=small}
\usepackage{booktabs}
\usepackage[table,xcdraw]{xcolor}
\usepackage{chngcntr}
\usepackage[utf8]{inputenc}
\usepackage{listings}
\usepackage{subcaption}
\usepackage{indentfirst}
\usepackage{enumitem}
\usepackage{booktabs}
\usepackage{multirow}
\usepackage{flafter}
\usepackage{hyperref}
\usepackage[outputdir=../]{minted}
\usepackage{lipsum}
\hypersetup{
colorlinks=true,
linkcolor=blue,
filecolor=magenta,
urlcolor=blue,
citecolor=blue,
pdfpagemode=FullScreen,
}
\setcounter{secnumdepth}{3} % for subheadings
\setlength{\cfttabindent}{0pt} %for tables
\setlength{\cftfigindent}{0pt} %for figures
% Set this up
\title{Project Title}
\author{Author Name}
\date{\today}
\counterwithout{figure}{section}
\counterwithin{figure}{chapter}
\counterwithout{table}{section}
\counterwithin{table}{chapter}
\begin{document}
\addtocontents{toc}{\protect Title \hfill Page No.\par \bigskip}
\input{sec/titlepage}
\pagenumbering{roman} % roman page numbers
%% Put declaration, letter of approval and copyright only in the final report
\input{sec/declaration}
%% This is constant for all the reports
\input{sec/abstract}
\input{sec/acknowledgment}
{
\hypersetup{linkcolor=black}
% Table of contents
{
\begin{center}
\setlength{\parskip}{0em}
\renewcommand\contentsname{TABLE OF CONTENTS} % This will change heading text
\tableofcontents %\addcontentsline{toc}{section}{TABLE OF CONTENTS}
\end{center}
}
% List of figures - if any
\newpage
\listoffigures
\addcontentsline{toc}{section}{LIST OF FIGURES}
% List of tables- if any
\newpage
\listoftables
\addcontentsline{toc}{section}{LIST OF TABLES}
}
\newpage
\input{sec/introduction}
\input{sec/literature_review}
\input{sec/methodology}
\input{sec/implementation}
\input{sec/result}
\input{sec/conclusion}
\input{sec/references}
\newpage
\appendix
\addtocounter{chapter}{1}
\input{sec/appendix}
\end{document}