thank you in advance
E
Code: Select all
% Document class
\documentclass[11pt,oneside,openleft,a4paper]{report}
% Packages
\usepackage{epsfig}
\usepackage{subfigure}
\usepackage[hang]{caption}
\usepackage{chicnarm}
\usepackage{calc}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{color}
\usepackage[numbers,sort&compress,nonamebreak]{natbib}
\usepackage{indentfirst}
\usepackage{graphicx}
\usepackage{booktabs}
\usepackage{multirow}
\usepackage{ar}
\usepackage{hyperref}
\usepackage{hypernat}
%Setup Hyperref
\hypersetup{backref,colorlinks=true,linkcolor={black},citecolor={black}}
% Bibliography Style
\bibliographystyle{unsrtnat}
% Graphics path
\graphicspath{{title/}{Introduction/}{BibliographyRev/}{Feasibility/}{Parametric_Study/}{Appendix/}}
% The document
\begin{document}
% Title page etc ...
\include{title/title}
\addcontentsline{toc}{chapter}{Abstract}
\include{abstract/abstract}
%\include{acknowledgements/acknowledgements}
%\include{dedication/dedictaion}
%\include{nomenclature/nomenclature}
% Table of contents etc ...
\addcontentsline{toc}{chapter}{Table of Contents}
\tableofcontents
\addcontentsline{toc}{chapter}{List of Figures}
\listoffigures
\addcontentsline{toc}{chapter}{List of Tables}
\listoftables
% The chapters
\include{Introduction/Introduction}
\include{BibliographyRev/BibliographyRev}
\include{Feasibility/Feasibility}
\include{Parametric_Study/Parametric_Study}
\addcontentsline{toc}{chapter}{Bibliography}
\bibliography{mybib}
\appendix
\include{Appendix/Appendix}
\end{document}