-
Notifications
You must be signed in to change notification settings - Fork 1
/
prelude.tex
126 lines (97 loc) · 3.48 KB
/
prelude.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
% prelude.tex
% - titlepage
% - dedication (optional)
% - approval sheet
% - course certificate
% - table of contents, list of tables and list of figures
% - nomenclature
% - abstract
% =========================================================================== %
\clearpage\pagenumbering{roman} % This makes the page numbers Roman (i, ii, etc)
% TITLE PAGE
% - define \title{} \author{} \date{}
\input{prelude/title}
\author{My Name}
\date{2022}
% - Roll number, required for title page, approval sheet, and
% certificate of course work
\rollnum{MyRollNumber}
% - The default degree is ``Doctor of Philosophy''
% (unless the document style msthesis is specified
% and then the default degree is ``Master of Science'')
% Degree can be changed using the command \iitkdegree{}
\iitkdegree{Doctor of Philosophy}
\iitkprogramme{PhD}
% - The default report type is preliminary report.
% * for a PhD thesis, specify \thesis
\thesis
% * for a M.Tech./M.Phil./M.Des./M.S. dissertation, specify \dissertation
%\dissertation
% * for a DIIT/B.Tech./M.Sc.project report, specify \project
%\project
% * for any other type, use \reporttype{}
%\reporttype{ReportType}
% - The default department is ``Unknown Department''
% The department can be changed using the command \department{}
\department{Computer Science and Engineering}
% - Set the guide's name
\setguide{Prof My Guide}
\setguidedept{Department of Computer Science and Engineering}
% - Set the coguide's name (if you have one)
%\setcoguide{Prof Co Guide}
%\setcoguidedept{Department of Computer Science and Engineering}
% - Set external guide (if you have one)
%\setexguide{Prof External Guide}
%\setexguidedept{Department of Computer Science and Engineering}
% - once the above are defined, use \maketitle to generate the titlepage
\maketitle
%--------------------------------------------------------------------%
% CERTIFICATE
% The first page after the title page.
% % Define advisor's signature
% \advisorsignature{
% \vspace*{-3em}
% \includegraphics[scale=0.45]{advisor_signature.png}
% \hspace*{0.1cm}
% \\[-2.5em]
% }
% % Enable advisor's signature on Certificate page
% \advisorsignaturetrue
\makecertificate
%--------------------------------------------------------------------%
% DECLARATION
% Declaration format as required by IITK Thesis Processing Cell
% % Define student's signature
% \studentsignature{
% \vspace*{-3em}
% \includegraphics[scale=0.45]{student_signature.png}
% \hspace*{1cm}
% \\[-2.8em]
% }
% % Enable student's signature on Declaration page
% \studentsignaturetrue
\makedeclaration
%--------------------------------------------------------------------%
% COPYRIGHT PAGE
% - To include a copyright page use \copyrightpage
% \copyrightpage
%--------------------------------------------------------------------%
% ABSTRACT
\include{prelude/abstract}
%--------------------------------------------------------------------%
% DEDICATION
% Dedications, if any.
\include{prelude/dedication}
%--------------------------------------------------------------------%
% ACKNOWLEDGEMENTS
\include{prelude/acknowledgments}
%--------------------------------------------------------------------%
% CONTENTS, TABLES, FIGURES
\tableofcontents
\listoftables
% \cleardoublepage
% \phantomsection \label{listoffig}
% \addcontentsline{toc}{chapter}{List of Figures}
% \listof{program}{List of Figures}
\listoffigures
\cleardoublepage\pagenumbering{arabic} % Make the page numbers Arabic (1, 2, etc)