%--------------------------------------------------------------------------------------------------%
%   Version:    1.0
%   Last Mod:   20170307    
%         By:   Juan Medina juancamilomedina1989@gmail.com
%   Author:     Juan Medina juancamilomedina1989@gmail.com
%--------------------------------------------------------------------------------------------------%
%-------------------------------------------- PREAMBLE --------------------------------------------%
\documentclass[12pt,twoside]{report}
\usepackage[a4paper,width=150mm,headheight=110pt,top=25mm,bottom=25mm]{geometry}
\usepackage[utf8]{inputenc}
\usepackage{listings}
\usepackage{graphicx}
\usepackage{pgffor} 
\usepackage{float}
\usepackage{graphics} 
\usepackage{fancyhdr}
\graphicspath{{Images/}}
\usepackage[round, numbers,authoryear]{natbib}
\usepackage{color}
\usepackage[dvipsnames]{xcolor}
\definecolor{mycolor}{RGB}{30,75,180}
\definecolor{mycolor2}{RGB}{40,75,90}
% Lund colors
\definecolor{LUGreen}{RGB}{173,202,184}
\definecolor{LUPink}{RGB}{233,196,199}
\definecolor{LUBlue}{RGB}{0,0,128}
\definecolor{LUBronze}{RGB}{156,97,20}
\definecolor{LUblue}{RGB}{185,211,220}
\definecolor{LUGrey}{RGB}{77,76,68}
\usepackage[colorlinks = true,
            linkcolor = mycolor,
            urlcolor  = mycolor,
            citecolor = mycolor,
            anchorcolor = mycolor]{hyperref}
\usepackage[hypcap=true,font={small,it}]{caption}
\captionsetup{belowskip=2pt,aboveskip=2pt}
\bibliographystyle{abbrvnat}
\renewcommand{\chaptername}{}
\renewcommand{\figureautorefname}{figure} % lower case default ref
\renewcommand{\tableautorefname}{table} % lower case default ref
\newcommand{\latex}{\LaTeX\xspace}
\newcommand{\mcite}[1]{\textcolor{mycolor}{\citeauthor{#1} (\citeyear{#1})}}
\newcommand{\hcite}[1]{(\textcolor{mycolor}{\citeauthor{#1}, \citeyear{#1}})}
%----------------------------------------------------------------------------------------------------%
%--------------------------------------------- DOCUMENT ---------------------------------------------%
\begin{document}
%\fancyhead[RO,LE]{}
% Title page
    \input{Sections/Title}
% Optional Chapters
    %\chapter*{Dedication}
    %\chapter*{Declaration}
    \chapter*{Acknowledgements}
    \textcolor{red}{It is usual, but not compulsory, to thank those who have been of particular help to you in completing the thesis.}
% Table of contents, list of figures, and list of tables
    {\hypersetup{linkcolor=black}
        \tableofcontents
        \listoffigures
        \listoftables
    }
        {\hypersetup{linkcolor=mycolor}}
    
% Introduction
    \chapter{Introduction} 
    \input{Sections/Introduction}
     
% Theory
    \chapter{Theory}
    \input{Sections/Theory}
    
% Data
    \chapter{Data}
    \input{Sections/Data}
    
% Methods
    \chapter{Methods}
    \input{Sections/Methods}
    
% Empirical Analysis
    \chapter{Empirical Analysis}
    \input{Sections/EmpiricalAnalysis}
    
% Conclusion
    \chapter{Conclusion}
    \input{Sections/Conclusion}
    
% Bibliography
    \phantomsection
    \addcontentsline{toc}{chapter}{References}%
    \bibliography{bibliography}
    
    \vspace{2.0cm}
    \textcolor{red}{Refer to \href{http://libguides.lub.lu.se/plagiarism}{LUSEM’s Harvard referencing guidelines} in the Teaching and Learning platform. \url{Lusem.lu.se/asks}}
    % The template provides \hcite and \mcite commands to present hyperlinked references in the 
    % Harvard referencing style '(Author, Year)'  and 'Author (Year)'
    % The template has an automated bibliography section based on references 
    % consistent with entries in the 'bibliography.bib' file 
% Appendices
    \appendix
    \chapter{(Appendix A title)}
    \input{Sections/Appendix_A}
    
     \chapter{(Appendix B title)}
    \input{Sections/Appendix_B}
\end{document}
%----------------------------------------------------------------------------------------------------%