-
Notifications
You must be signed in to change notification settings - Fork 0
/
thesis.tex
104 lines (76 loc) · 2.05 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
\documentclass[12pt,twoside]{thesis}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{float}
\usepackage{subcaption}
\usepackage{varwidth}
\usepackage{environ}
\usepackage[framemethod=default]{mdframed}
\usepackage[linesnumbered,ruled,vlined]{algorithm2e}
\renewcommand{\baselinestretch}{1}
\setlength{\parskip}{0.25\baselineskip}
\NewEnviron{annexample}[5][]{
\begin{figure}[H]
\centering
\begin{minipage}{\dimexpr #2\relax}
\begin{mdframed}[linecolor=black,backgroundcolor=white,linewidth=1pt,#1]
\texttt{\BODY}
\end{mdframed}
\end{minipage}
\caption[#4]{#5}
\label{#3}
\end{figure}
}
% quotation
\newcommand{\doublequote}[1]{``#1''}
\newcommand{\guillemot}[1]{\guillemotleft#1\guillemotright}
% math abs
\newcommand{\abs}[1]{\left|#1\right|}
% roman numeral
\newcommand{\RomanNumeral}[1]{\textup{\uppercase\expandafter{\romannumeral#1}}}
\title{Generación Automática de Ontologías}
\author{José Ariel Romero Costa}
\advisor{MSc. Juan Pablo Consuegra Ayala}
\degree{Licenciado en Ciencia de la Computación}
\university{Universidad de La Habana}
\faculty{Facultad de Matemática y Computación}
\date{Septiembre de 2020}
\logo{graphics/university_logo}
%\makenomenclature
\begin{document}
\let\cleardoublepage\clearpage
\frontmatter
\maketitle
% phrase
\include{frontmatter/phrase}
% dedication
\include{frontmatter/dedication}
% thanks
\include{frontmatter/thanks}
% supervisor opinion
\include{frontmatter/supervisor_opinion}
% abstract (spanish)
\include{frontmatter/resumen}
% abstract (english)
\include{frontmatter/abstract}
% contents
\include{frontmatter/contents}
\mainmatter
% introduction
\include{mainmatter/introduction}
% ontology learning
\include{mainmatter/chapter1}
% annotation model
\include{mainmatter/chapter2}
% proposed solution
\include{mainmatter/chapter3}
% results
\include{mainmatter/results}
\backmatter
% conclusions
\include{backmatter/conclusions}
% recommendations
\include{backmatter/recommendations}
% bibliography
\include{backmatter/bibliography}
\end{document}