-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththesis.tex
74 lines (63 loc) · 2.2 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
\documentclass[open=any]{SPhdThesis}
% Packages.
\usepackage{listings}
\usepackage{titlesec}
\usepackage{todonotes}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage{amsthm}
\usepackage[titletoc]{appendix}
\usepackage{pdfpages}
\usepackage{multirow}
% Environments
\newtheorem{theorem}{Theorem}[section]
\newtheorem{corollary}{Corollary}[theorem]
\newtheorem{lemma}[theorem]{Lemma}
\newtheorem{partconclusion}{Partial Conclusion}[chapter]
\newtheorem{definition}{Definition}[chapter]
\newtheorem{researchquestion}{Project Goal}
\newtheorem{scenario}{Scenario}
% PDF and title properties.
\SgSetTitle{Automatic generation of multi-language object domain models through a Shape Expressions subset}
\SgSetAuthor{Guillermo Facundo Colunga}
\SgSetAuthorDegrees{Supervisors: Jose Emilio Labra Gayo and Daniel Fernández Álvarez.}
\SgSetYear{2020}
\SgSetDegree{Software Engineer}
\SgSetDepartment{Department of Computer Science}
\SgSetUniversity{University of Oviedo}
\SgSetDeclarationDate{July 2020}
% The document.
\begin{document}
\begin{frontmatter}
\SgAddTitle%
%\SgAddDeclaration%
\input{acknowledgments}%
\input{abstract}%
\SgAddToc% Table of contents.
\SgAddLof% List of figures.
\SgAddLot% List of tables.
%\SgAddLoa% List of algorithms.
\end{frontmatter}
\input{chapters/introduction.tex}
\input{chapters/theoretical-background.tex}
\input{chapters/related-work.tex}
\part{Enhancing Error and Warning Detection and Reporting on ShEx}
\input{chapters/part_1/analyzer-problem.tex}
\input{chapters/part_1/analyzer-analysis.tex}
\input{chapters/part_1/analyzer-implementation.tex}
\part{Translating ShEx Schemas to Object Domain Models}
\input{chapters/part_2/translator-problem.tex}
\input{chapters/part_2/translator-analysis.tex}
\input{chapters/part_2/translator-implementation.tex}
\part{Project Synthesis}
\input{chapters/part_3/evauation-of-results.tex}
\input{chapters/part_3/planning-and-budget.tex}
\input{chapters/part_3/conclusions.tex}
\part{Annexes and References}
\begin{appendices}
\input{appendices/shex-micro-language.tex}
\input{appendices/shex-lite-antlr-grammar.tex}
\input{appendices/github-ci.tex}
\end{appendices}
\SgIncludeBib{biblio}
\end{document}