This repository has been archived by the owner on Nov 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.tex
192 lines (165 loc) · 4.61 KB
/
main.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
\documentclass[12pt,a4paper,oneside]{article}
\usepackage{graphicx}
\usepackage{titlepic}
\usepackage[utf8]{inputenc}
\usepackage[left=1.0in,right=1.0in, top=1in, bottom= 1in]{geometry}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsmath}
\usepackage{algorithmicx}
\usepackage{algorithm}
\usepackage{algpseudocode}
\usepackage{fancyhdr}
\usepackage{hyperref}
\usepackage{etoolbox}
\usepackage[nottoc]{tocbibind}
\usepackage{appendix}
\usepackage{multicol}
\usepackage{leftidx}
\graphicspath{{figures/}}
\usepackage{ragged2e}
\usepackage{mathtools}
\usepackage{units}
\usepackage{float}
\usepackage{subcaption}
\usepackage{commath}
\usepackage{pdfpages}
\usepackage{wrapfig}
\usepackage[sorting=none]{biblatex} %biblatex package, bibliography
\usepackage{xcolor}
\usepackage{listings}
\usepackage{dirtytalk}
\usepackage{amsthm}
\usepackage[T1]{fontenc}
\usepackage{enumitem}
\usepackage{tabularx}
\usepackage{verbatimbox}
\setlist[enumerate,1]{label=\textbf{\arabic*)}}
\newcommand\blankpage{%
\null
\thispagestyle{empty}%
%\addtocounter{page}{-1}%
\newpage}
\theoremstyle{definition}
\newtheorem{definition}{Definition}[section]
\newtheorem{theorem}{Theorem}
\usepackage[none]{hyphenat} % Avoids to go out of margin
\usepackage{subfiles}
\definecolor{codegreen}{rgb}{0,0.6,0}
\definecolor{codegray}{rgb}{0.5,0.5,0.5}
\definecolor{codepurple}{rgb}{0.58,0,0.82}
\definecolor{backcolour}{rgb}{0.95,0.95,0.92}
\input{utils/listings-glsl.prf}
\input{utils/listings-UEcpp.prf}
\lstdefinestyle{mystyle}{
backgroundcolor=\color{backcolour},
commentstyle=\color{codegreen},
keywordstyle=\color{magenta},
numberstyle=\tiny\color{codegray},
stringstyle=\color{codepurple},
basicstyle=\ttfamily\footnotesize,
breakatwhitespace=false,
breaklines=true,
captionpos=b,
keepspaces=true,
numbers=left,
numbersep=5pt,
showspaces=false,
showstringspaces=false,
showtabs=false,
tabsize=4
}
\lstset{style=mystyle}
% --------------------------------------------- %
\addbibresource{bibliografia.bib} %Import the bibliography file
\title{Sviluppo di plugin per l'import e preview di fixture virtuali basate su GDTF in Unreal Engine} % Title
\author{Luca Sorace} % Authors separated by \\
\date{\today} % Date
\hypersetup{
pdftitle=Sviluppo di plugin per l'import e preview di fixture virtuali basate su GDTF in Unreal Engine,
pdfauthor=Luca Sorace,
colorlinks = true,
urlcolor = blue,
linkcolor = black,
citecolor = black
}
% Font size of figure smaller than normal size:
\usepackage{caption}
\captionsetup[figure]{font=small}
%\captionsetup[table]{font=small}
%\usepackage{setspace} % double spacing
\linespread{1.2}
\makeatletter
\let\thetitle\@title
\let\theauthor\@author
\let\thedate\@date
\makeatother
\renewcommand{\contentsname}{Indice}
\renewcommand{\figurename}{Figura}
%\setlist[itemize]{noitemsep}
%\setlist[itemize]{noitemsep, nolistsep}
\setlist[itemize]{itemsep=0.001cm}
%\setlist[enumerate]{noitemsep}
\setlist[enumerate]{itemsep=0.001cm}
\hbadness = 10000 %Disable underfull hbox warnings
\begin{document}
\sloppy
\include{title}
\vspace{1.0cm}
% INTRO
% - Anatomia di una fixture
% -- Luci statiche e dinamiche
% -- Moduli di una luce
% -- Protocollo DMX
% - gdtf
% - Informazioni sul tirocinio
% - Strutture dati su Unreal Engine
% - Struttura della tesi
% DESIGN PIPELINE DI RENDERING
% - Vecchia implementazione
% - Idea
% -- Problemi nei custom/material function
% - Generazione del codice (+ ricerca di tutorial su come fare)
% -- Per Beam
% -- Per MF
% REDESIGN GERARCHIA COMPONENTI
% - Vecchia implementazione
% - Idea
% -- Spiegazione strutture dati
% - Implementazione
% -- Ottenimento valori default
% RI-IMPLEMENTAZIONE INTERPOLAZIONE
% - Problemi riscontrati (rapidamente)
% - Implementazione di partenza (Traffic)
% - Modifiche all'implementazione
% -- ((Docs già fatte, vanno tradotte))
% IMPLEMENTAZIONE NUOVE FUNZIONALITA'
% - Sagomatori
% - Iris
% CONCLUSIONI
% - Problemi riscontrati
% - Sviluppi futuri
% -- Arri
\tableofcontents
\clearpage
\newpage
\blankpage
\newpage
\subfile{chapters/01-Introduzione}
\clearpage
\subfile{chapters/02-RenderingPipeline}
\clearpage
\subfile{chapters/03-GerarchiaFixtureComponent}
\clearpage
\subfile{chapters/04-Interpolation}
\clearpage
\subfile{chapters/05-NuoveFeatures}
\clearpage
\subfile{chapters/06-Conclusioni}
\clearpage
\newpage
\blankpage
\addcontentsline{toc}{section}{Bibliografia}
\renewcommand\refname{Bibliografia}
\printbibliography
\end{document}