-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathThesis.tex
143 lines (99 loc) · 6.17 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
%% ----------------------------------------------------------------
%% Thesis.tex -- MAIN FILE (the one that you compile with LaTeX)
%% ----------------------------------------------------------------
% Set up the document
\documentclass[a4paper, 16pt, oneside]{Thesis} % Use the "Thesis" style, based on the ECS Thesis style by Steve Gunn
\graphicspath{Figures/} % Location of the graphics files (set up for graphics to be in PDF format)
% Include any extra LaTeX packages required
\usepackage[backend=bibtex,style=verbose]{biblatex} % Use the "Natbib" style for the references in the Bibliography
\usepackage{verbatim} % Needed for the "comment" environment to make LaTeX comments
\usepackage{vector} % Allows "\bvec{}" and "\buvec{}" for "blackboard" style bold vectors in maths
\usepackage{amsmath}
\usepackage[capitalise]{cleveref}
\usepackage{relsize}
\usepackage{flexisym}
\usepackage{chngcntr}
\usepackage{braket}
\counterwithout{footnote}{chapter}
\hypersetup{urlcolor=blue, colorlinks=true} % Colours hyperlinks in blue, but this can be distracting if there are many links.
\addbibresource{references.bib}
%% ----------------------------------------------------------------
\begin{document}
\frontmatter % Begin Roman style (i, ii, iii, iv...) page numbering
% Set up the Title Page
\title {Thesis Title}
\authors {\texorpdfstring
{\href{your web site or email address}{Author Name}}
{Author Name}
}
\addresses {\groupname\\\deptname\\\univname} % Do not change this here, instead these must be set in the "Thesis.cls" file, please look through it instead
\date {\today}
\subject {}
\keywords {}
\maketitle
%% ----------------------------------------------------------------
\setstretch{1.3} % It is better to have smaller font and larger line spacing than the other way round
% Define the page headers using the FancyHdr package and set up for one-sided printing
\fancyhead{} % Clears all page headers and footers
\rhead{\thepage} % Sets the right side header to show the page number
\lhead{} % Clears the left side page header
\pagestyle{fancy} % Finally, use the "fancy" page style to implement the FancyHdr headers
%% ----------------------------------------------------------------
% Declaration Page required for the Thesis, your institution may give you a different text to place here
\clearpage % Funny Quote page ended, start a new page
%% ----------------------------------------------------------------
% The Abstract Page
\addtotoc{Abstract} % Add the "Abstract" page entry to the Contents
\thispagestyle{empty}
\begin{center}
\huge{\emph{Abstract}}
\end{center}
This is a review of the particle production mechanism in early universe when the universe was undergoing exponential expansion. The classical metric during the exponential expansion phase is the de-Sitter metric in its steady state region. A free quantum field is considered in this background and the amount of energy due to the particle production is calculated. Also one of the implications of this energy is reviewed. The implication being the instablity of the classical metric due to quantum fluctuations.
\clearpage % Abstract ended, start a new page
%% ----------------------------------------------------------------
\setstretch{1.3} % Reset the line-spacing to 1.3 for body text (if it has changed)
% The Acknowledgements page, for thanking everyone
\acknowledgements{
\addtocontents{toc}{\vspace{1em}} % Add a gap in the Contents, for aesthetics
I would like to express my gratitude to Dr. Arshad Momen. He not only taught most of what I understand about physics, he indoctrinated me with what can be called "physical way of thinking". He encourage me and others to think more about physical meaning than toiling with mathematics.
I would also like to acknowlege the course teachers at Theoretical Physics Department, namely, Dr. Golam
Mohammed Bhuiyan, Dr. Md. Tanvir Hanif and Md. Ruhul Amin, for supporting my studies as i struggled to get through because of my engineering background.
Last but not the least i have to acknowledge the assistance of my classmate Tanjib Atique, without whom, i would not have survived the intense coursework
}
\clearpage % End of the Acknowledgements
%% ----------------------------------------------------------------
\pagestyle{fancy} %The page style headers have been "empty" all this time, now use the "fancy" headers as defined before to bring them back
%% ----------------------------------------------------------------
\lhead{\emph{Contents}} % Set the left side page header to "Contents"
\tableofcontents % Write out the Table of Contents
%% ----------------------------------------------------------------
%% ----------------------------------------------------------------
% End of the pre-able, contents and lists of things
% Begin the Dedication page
% Add a gap in the Contents, for aesthetics
%% ----------------------------------------------------------------
\mainmatter % Begin normal, numeric (1,2,3...) page numbering
\pagestyle{fancy} % Return the page headers back to the "fancy" style
% Include the chapters of the thesis, as separate files
% Just uncomment the lines as you write the chapters
\input{Chapters/Chapter1} % Introduction
\input{Chapters/Chapter2} % Background Theory
\input{Chapters/Chapter3} % Experimental Setup
\input{Chapters/Chapter4} % Experiment 1
\input{Chapters/Chapter5} % Experiment 2
\input{Chapters/Chapter6} % Results and Discussion
\input{Chapters/Chapter7} % Conclusion
%% ----------------------------------------------------------------
% Now begin the Appendices, including them as separate files
\addtocontents{toc}{\vspace{2em}} % Add a gap in the Contents, for aesthetics
\appendix % Cue to tell LaTeX that the following 'chapters' are Appendices
\input{Appendices/AppendixA}\label{app:A} % Appendix Title
%\input{Appendices/AppendixB} % Appendix Title
%\input{Appendices/AppendixC} % Appendix Title
\printbibliography
\lhead{\emph{Bibilography}}
\addtocontents{toc}{\vspace{2em}} % Add a gap in the Contents, for aesthetics
\backmatter
%% ----------------------------------------------------------------
\end{document} % The End
%% ----------------------------------------------------------------