Maharashtra Institute of Technology, Project Report Template
Author
Amit Suhas Borole
Last Updated
bir yıl önce
License
Creative Commons CC BY 4.0
Abstract
This Report is made to make students life easier.
%%% This is a complete thesis template which includes almost all the things required to prepare your thesis according to the revised KTU formatting guidelines
\documentclass[PhD]{ktudiss}
%%% Color option can be 'NoColor' if you don't want any colorband in MS/PhD thesis
%%% Printing mode 'PrntForm' to leave relevant blank pages when printing the thesis
%\documentclass[PhD,PrntForm,NoColor]{ktudiss}
%\documentclass[MS]{ktudiss}
%\documentclass[MTech]{ktudiss}
%\documentclass[DD]{ktudiss}
%\documentclass[MBA]{ktudiss}
%\documentclass[MSc]{ktudiss}
%\documentclass[BTech]{ktudiss}
%%% Default LaTeX packages used in this template are placed in '01_packages' file
%%% Any custom commands in the '02_commands' file under '0_settings' folder
\input{0_settings/01_packages}
%\usepackage{catchfilebetweentags}
\input{0_settings/02_commands}
%% Double spacing option (only for thesis)
\onehalfspacing % For double spacing
%\setstretch{2} % Alternate double-spacing
%%%%%%%%%%% LaTeX document starts here %%%%%%%%%%%%%%%%
\begin{document}
%%% Preamble will have all the files related to pages that comes before chapters
%%% Roman Numbering starts from acknowledgments and ends before chapters start
\input{0_settings/03_preamble}
%%% The main text of chapters will follow from this point so set the page numbering
%%% to arabic from here on.
\pagenumbering{arabic}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% A SAMPLE CHAPTER - Introduction.
\include{C_chap/C01_chap1}
\include{C_chap/C02_chap2}
\include{C_chap/C03_chap3}
\include{C_chap/C04_chap4}
\include{C_chap/C05_chap5}
\include{C_chap/C06_chap6}
\include{C_chap/C07_chap7}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% Appendices.
\appendix
%%% Sets the label in the table of contents to "Appendix"
\addtocontents{toc}{\string\let\string\chapappname\string\appendixname}
%%% The appendices have to be included with `\input`, not `\include`
%%% due to a bug in LaTeX, otherwise the appendices will also be
%%% labeled "Chapter"
%%% Right way: \input{appendix-a/appendix-a}
%%% Obsolete way: \include{appendix-a/appendix-a}
\input{D_appx/D01_app1}
\input{D_appx/D02_app2}
%\include{D_appx/D01_app1}
%\include{D_appx/D02_app2}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% Bibliography with 'refs' file as the main library that contains all references needed
\clearpage
\phantomsection
\addcontentsline{toc}{chapter}{REFERENCES}
\begin{singlespace}
\bibliography{refs}
\end{singlespace}
%%% The following sections are only required for research programmes: PhD %%%%%%%%%%
%%% They have to be included in the final-approved thesis after viva-voce, so uncomment them only in the end %%%%%%
\clearpage
\phantomsection
\addcontentsline{toc}{chapter}{LIST OF PUBLICATIONS}
\input{0_settings/04_postamble}
\end{document}