forked from xenophene/masters-thesis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththesis.tex
133 lines (109 loc) · 4.32 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
% thesis.tex
%
% This file is root file for an example thesis written using the
% IIT Bombay LaTeX Style file.
% Created by Amey Karkare (21 June 2007)
%
% It is provided without warranty on an AS IS basis.
%=====================================================================
% Read: http://www.cse.iitb.ac.in/karkare/iitbthesis/
% FAQ.txt for frequently asked quetions
% Changes.txt for changes
% README for more information
%=====================================================================
%=====================================================================
% DOCUMENT STYLE
%=====================================================================
% IITB PhD Thesis format default settings are:
% 12pt, one-sided printing on a4 size paper
\documentclass[openright,twoside]{iitkthesis}
% For two-sided printing, with Chapter starting on odd-numbered pages,
% use the following line instead:
%%\documentclass[openright,twoside]{iitbthesis}
%=====================================================================
% OPTIONAL PACKAGES
%=====================================================================
% To include optional packages, use the \usepackage command.
% For e.g., The package epsfig is used to bring in the Encapsulated
% PostScript figures into the document.
% The package times is used to change the fonts to Times Roman;
%=====================================================================
%=====================================================================
% Single counter for theorems and theorem-like environments:
%=====================================================================
\newtheorem{theorem}{Theorem}[chapter]
\newtheorem{assertion}[theorem]{Assertion}
\newtheorem{claim}[theorem]{Claim}
\newtheorem{conjecture}[theorem]{Conjecture}
\newtheorem{corollary}[theorem]{Corollary}
\newtheorem{definition}[theorem]{Definition}
\newtheorem{example}[theorem]{Example}
\newtheorem{figger}[theorem]{Figure}
\newtheorem{lemma}[theorem]{Lemma}
\newtheorem{prop}[theorem]{Proposition}
\newtheorem{remark}[theorem]{Remark}
\usepackage{minted}
\usemintedstyle{bw}
\usepackage{fontspec}
\setmonofont[Scale=0.85]{DejaVu Sans Mono}
\usepackage[sorting=none, maxbibnames=99, minbibnames=99]{biblatex}
\bibliography{citations}
\usepackage{amsmath}
\usepackage{lipsum}
\usepackage{float}
\usepackage[hidelinks]{hyperref}
\usepackage{microtype}
\usepackage[font=small,labelfont=bf]{caption}
\usepackage{fancyref}
\usepackage{color,soul} % for highlights
\usepackage{enumerate}
\usepackage{tabularx}
\setlength{\headheight}{15pt}
\expandafter\def\csname PY@tok@err\endcsname{}
\floatstyle{ruled}
\newfloat{program}{thp}{lop}
\floatname{program}{Figure}
\numberwithin{program}{chapter}
\BeforeBeginEnvironment{program}{\begin{singlespace}}
\AfterEndEnvironment{program}{\end{singlespace}}
%=====================================================================
% End of Preamble, start of document
%
\begin{document}
%=====================================================================
% Include the prelude for Title page, abstract, table of contents, etc
% You need to modify it to contain your details
\include{prelude}
%=====================================================================
% Include the technical part of the report
%% \include{chap_intro} % Chapter 1: Introduction
%% \include{chap_others} % Other chapters as required
%% \include{chap_conclusions} % Finally the summary & conclusions
%=====================================================================
% APPENDIX
% Appendices, if any, must precede the cited literatures.
% Appendices shall be numbered in Roman Capitals (e.g. Appendix IV)
%% \appendix
%% \include{appendix_something}
%=====================================================================
% PUBLICATIONS
% publications if any may be listed after the literature cited.
%% \include{mypubs}
%=====================================================================
% ACKNOWLEDGMENTS
% This is the last item in the thesis. It should be signed by
% author, with date.
\input{intro}
\input{technical}
\input{applications}
\input{related}
\input{conclusions}
\begin{singlespace}
\cleardoublepage
\phantomsection \label{listoffig}
\addcontentsline{toc}{chapter}{References}
\renewcommand\bibname{References}
\printbibliography
\nocite{*}
\end{singlespace}
\end{document}