IIT-Ropar-Thesis-LaTeX-Template_2022_06_02
Författare
pk
Last Updated
för 4 månader sedan
Licens
Creative Commons CC BY 4.0
Sammanfattning
Ph.D thesis template
%----------------------------------------------------------------
\documentclass[11pt, twoside]{book} % you can change font size to 12 point also
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\input{packages} % insert packages and settings
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
%----------------------------------------------------------------
% include preliminary pages
%----------------------------------------------------------------
\frontmatter % use roman page numbering for preliminary pages
% The cover page is given saparately as the margins for that page are different.
\input{Preliminary_pages/0_front_page}
\input{Preliminary_pages/1_copyright}
\input{Preliminary_pages/2_dedication}
\input{Preliminary_pages/3_declaration}
\input{Preliminary_pages/4_acknowledgment}
\input{Preliminary_pages/5_certificate}
\input{Preliminary_pages/6_lay_summary}
\input{Preliminary_pages/7_abstract}
\input{Preliminary_pages/8_publications}
\tableofcontents % add table of contents
\listoffigures % add list of figures
\listoftables % add table of tables
\printnomenclature % add list of symbols
%----------------------------------------------------------------
% include chapters
%----------------------------------------------------------------
\mainmatter % use numeric page numbering for chapters
\input{Chapters/Ch1_introduction}
\input{Chapters/Ch2_literature}
\input{Chapters/Ch3_methodology}
\input{Chapters/Ch4_results}
\input{Chapters/Ch5_conclusion}
%----------------------------------------------------------------
% add references
%----------------------------------------------------------------
\renewcommand{\bibname}{References} % changes default name Bibliography to References
\bibliographystyle{unsrtnat} % define reference style
\bibliography{References/references} % call the .bib file for references
%----------------------------------------------------------------
% add appendix
%----------------------------------------------------------------
\appendix % call appendix
%\chapter{Appendix A}
\renewcommand{\appendixname}{APPENDIX}
\input{Post_pages/appendix_A}
\end{document}