This repository has been archived by the owner on Feb 20, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
thesis.tex
55 lines (41 loc) · 1.54 KB
/
thesis.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
\documentclass[a4paper,12pt,times,authoryear,custommargin]{Classes/PhDThesisPSnPDF}
% ********************************** Preamble **********************************
% Preamble: Contains packages and user-defined commands and settings
\input{Preamble/preamble}
% ************************ Thesis Information & Meta-data **********************
% Thesis title and author information, refernce file for biblatex
\input{thesis-info}
% ******************************** Front Matter ********************************
\begin{document}
\frontmatter
\begin{titlepage}
\maketitle
\end{titlepage}
\include{Dedication/dedication}
\include{Declaration/declaration}
\include{Acknowledgement/acknowledgement}
\include{Abstract/abstract}
% *********************** Adding TOC and List of Figures ***********************
\tableofcontents
% ******************************** Main Matter *********************************
\mainmatter
\include{Chapter1/chapter1}
\include{Chapter2/chapter2}
\include{Chapter3/chapter3}
\include{Chapter4/chapter4}
\include{Chapter5/chapter5}
\include{Chapter6/chapter6}
% ********************************** Bibliography ******************************
\begin{spacing}{0.5}
%\nocite{*}
\bibliographystyle{LivRevSolar} % use this to have URLs listed in References apalike
\cleardoublepage
\footnotesize
\bibliography{References/references} % Path to your References.bib file
\end{spacing}
\normalsize
% ********************************** Appendices ********************************
\begin{appendices}
\include{Appendix1/appendix1}
\end{appendices}
\end{document}