-
Notifications
You must be signed in to change notification settings - Fork 0
/
cic-tc.tex
209 lines (164 loc) · 6.1 KB
/
cic-tc.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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
% ==============================
% DOCUMENT CLASS DEFINITION
% ==============================
% Possible Arguments:
% * cic -- CS Graduate
% * ecp -- Computer Engineering Graduate
% * ppgc -- Programa de Pós Graduação em Computação
% * pgmigro -- Programa de Pós Graduação em Microeletrônica
% * tc -- Trabalhos de Conclusão (apenas cic e ecp)
% * diss ou mestrado -- Dissertações de Mestrado (ppgc e pgmicro)
% * tese ou doutorado -- Teses de Doutorado (ppgc e pgmicro)
% * ti -- Trabalho Individual (ppgc e pgmicro)
% * english -- para textos em inglês
% * openright -- Força início de capítulos em páginas ímpares (padrão da
% biblioteca)
% * oneside -- Desliga frente-e-verso
% * nominatalocal -- Lê os dados da nominata do arquivo nominatalocal.def
\documentclass[cic,tc,english,nominata]{resources/documentclass/iiufrgs}
% ==============================
% PACKAGES
% ==============================
\usepackage[utf8]{inputenc} % pacote para acentuação
\usepackage{graphicx} % pacote para importar figuras
\usepackage{times} % pacote para usar fonte Adobe Times
% \usepackage{palatino}
% \usepackage{mathptmx} % p/ usar fonte Adobe Times nas fórmulas
\usepackage[alf,abnt-emphasize=bf]{packages/abntex2cite} % pacote para usar citações abnt
\usepackage[table,dvipsnames]{xcolor}
\usepackage{amsfonts}
\usepackage{listings}
\usepackage{array}
\usepackage{booktabs}
\usepackage{mathtools}
\usepackage{sepfootnotes}
\usepackage{hyphenat}
\usepackage{import}
\usepackage{makecell}
\usepackage[super]{nth}
\usepackage{longtable}
% ==============================
% LISTINGS STYLE DEFINITION
% ==============================
\lstdefinestyle{mystyle}{frame=tb,
language=C++,
aboveskip=3em,
belowskip=3em,
xleftmargin=30pt,
xrightmargin=25pt,
captionpos=t,
showstringspaces=true,
columns=fullflexible,
basicstyle={\footnotesize\ttfamily},
numbers=left,
numbersep=8pt,
numberstyle=\tiny\color{gray},
keywordstyle=\color{blue},
commentstyle=\color{OliveGreen},
stringstyle=\color{mauve},
breaklines=true,
breakatwhitespace=false,
tabsize=4,
frame=single
}
\lstset{style=mystyle}
% ==============================
% GENERAL INFORMATION
% ==============================
\title{An Implementation of Adaptive Difficulty Systems for Challenging Video Games}
\author{Tagliaro}{Leonardo Ramos Gonzalez}
\advisor[Prof.~Dr.]{Nedel}{Luciana}
%\coadvisor[Prof.~Dr.]{Knuth}{Donald Ervin}
\date{April}{2022} % date must be the same as defense
\location{Porto Alegre}{Rio Grande do Sul}
% ==============================
% KEYWORDS
% ==============================
% Start all keywords with lowercase letters, except in the case of acronyms
\keyword{adaptive difficulty}
\keyword{dynamic content adaptation}
\keyword{player modeling}
\keyword{human-computer interaction}
\keyword{video games}
%\settowidth{\seclen}{1.10~}
%============================================================
\begin{document}
\maketitle
%============================================================
% dedicatoria
\clearpage
\begin{flushright}
\mbox{}\vfill
{\sffamily\itshape
``My past is not a memory. It’s a force at my back. It pushes and steers.\\I may not always like where it leads me, but like any story,\\the past needs resolution. What’s past is prologue.''\\}
--- \textsc{Samus Aran}
\end{flushright}
%============================================================
% Acknowledgments
\subimport{chapters/0_2-acknowledgments/}{acknowledgments.tex}
%============================================================
% Abstract
\subimport{chapters/0_1-abstract/}{abstract.tex}
%============================================================
\listoffigures % List of Figures
\listoftables % List of Tables
%\lstlistoflistings % List of Listings
% List of symbols
%\begin{listofsymbols}{$\alpha\beta\pi\omega$}
% \item[$\sum{\frac{a}{b}}$] First symbol
% \item[$\alpha\beta\pi\omega$] Another symbol
%\end{listofsymbols}
% List of abbreviations and acronyms
\begin{listofabbrv}{SPMD}
\item[2D] Two-dimensional
\item[3D] Three-dimensional
\item[ADC] Adaptive Duo-Chromosome Controller
\item[AGT] Adaptive Game Technologies
\item[AI] Artificial Intelligence
\item[API] Application Programming Interface
\item[AUC] Adaptive Uni-Chromosome Controller
\item[CSV] Comma-Separated Values
\item[DDA] Dynamic Difficulty Adjustment
\item[ECG] Electrocardiogram
\item[EMG] Electromyography
\item[HCI] Human-Computer Interaction
\item[HMD] Head-Mounted Device
\item[MSRP] Manufacturer-Suggested Retail Price
\item[NPC] Non-Player Character
\item[RNG] Random Number Generator
\item[RPG] Role-Playing Game
\item[RT] Regression Tree
\item[UX] User Experience
\item[VR] Virtual Reality
\end{listofabbrv}
%============================================================
\tableofcontents
%============================================================
% Introduction
\subimport{chapters/1-introduction/}{introduction}
%============================================================
% Literature, Related Work
\subimport{chapters/2-related-work/}{related-work}
%============================================================
% Analysis of Object of Study
\subimport{chapters/3-analysis/}{analysis}
%============================================================
% Design and Implementation
\subimport{chapters/4-implementation/}{implementation}
%============================================================
% Methodology and Results
\subimport{chapters/5-methodology-results/}{methodology}
%============================================================
% Dicussion
\subimport{chapters/6-discussion/}{discussion}
%============================================================
% Conclusion
\subimport{chapters/7-conclusion/}{conclusion}
%============================================================
% References
\subimport{references/}{bibliography}
%============================================================
\appendix
\subimport{chapters/annex_1}{annex-1}
%============================================================
\end{document}