-
Notifications
You must be signed in to change notification settings - Fork 0
/
thesis.tex
executable file
·111 lines (88 loc) · 2.28 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
\documentclass[12pt,a4paper]{book}
% margins
\usepackage[left=35mm,top=25mm,right=25mm,bottom=25mm]{geometry}
% centering captions
\usepackage[justification=centering]{caption}
% mathematical expressions
\usepackage{mathtools}
\usepackage{textcomp}
\everymath{\displaystyle}
%\usepackage{algorithm2e}
\usepackage{pdfpages}
% to write the date in the desired format
\usepackage{datetime}
% for including figures
%\usepackage{graphics}
% for including figures
\usepackage{graphicx}
\usepackage{hyperref}
% for doublespacing singlespacing etc.
\usepackage{setspace}
\graphicspath{{img/}}
\newdateformat{monthyear}{\monthname[\THEMONTH], \THEYEAR}
\newcommand*\rfrac[2]{{}^{#1}\!/_{#2}}
\def\title{Leveraging User's Mood and Song Popularity for Music Recommendation}
\def\degree{Master of Technology}
\def\author{Aritra Saha}
\def\rollno{Y8127125}
\def\advisor{Dr. Arnab Bhattacharya}
\def\department{Department of Computer Science and Engineering}
\def\institute{Indian Institute of Technology Kanpur}
\hypersetup{
bookmarks=true,
bookmarksopen=true,
bookmarksopenlevel=0,
bookmarksnumbered=true,
hypertexnames=false,
colorlinks=true,
linkcolor={black},
citecolor={black},
urlcolor={black},
breaklinks=true,
pdfauthor={\author},
pdftitle={\title}
}
\begin{document}
\frontmatter
\include{title}
\thispagestyle{empty}
\pagestyle{plain}
\cleardoublepage
% \include{certificate}
\includepdf{certificate_signed.pdf}
\pagenumbering{roman}
\pagestyle{plain}
\setcounter{page}{4}
\addcontentsline{toc}{chapter}{Abstract}
\onehalfspace
\include{abstract}
\include{dedication}
\include{acknowledgement}
\doublespacing
\setcounter{secnumdepth}{3}
\setcounter{tocdepth}{1}
\tableofcontents
\listoftables
\addcontentsline{toc}{chapter}{List of Tables}
\listoffigures
\addcontentsline{toc}{chapter}{List of Figures}
% \listofalgorithms
% \addcontentsline{toc}{chapter}{List of Algorithms}
\mainmatter
\doublespacing
\pagenumbering{arabic}
\pagestyle{myheadings}
\include{introduction}
\include{related}
\include{background}
\include{dataorg}
\include{implementation}
\include{results_conclusion}
% \appendix
% \include{appendix}
\backmatter
\singlespacing
\addcontentsline{toc}{chapter}{Bibliography}
\bibliographystyle{plain}
\bibliography{references}
\end{document}