-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2019-B052.tex
114 lines (100 loc) · 2.85 KB
/
2019-B052.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
\documentclass[12pt, a4paper]{report}
\usepackage[utf8]{inputenc}
\usepackage{csquotes}
\usepackage{graphicx}
\usepackage{longtable}
\usepackage{booktabs}
\usepackage{caption}
\usepackage{subcaption}
\usepackage{amsmath}
\usepackage{amsthm}
\usepackage[linesnumbered,ruled]{algorithm2e}
\usepackage{float}
\usepackage{longtable}
\usepackage{multirow}
\usepackage{tabularx}
\usepackage[table,xcdraw]{xcolor}
\usepackage[a4paper,width=150mm,top=25mm,bottom=25mm,bindingoffset=6mm]{geometry}
\usepackage{fancyhdr}
%\usepackage[spanish=nohyphenation,mexico=nohyphenation]{hyphsubst}
\usepackage[spanish,mexico]{babel}
\usepackage{color} %May be necessary if you want to color links
\usepackage{hyperref}
\usepackage{lscape}
\usepackage{graphicx}
\usepackage{array}% http://ctan.org/pkg/array
\usepackage[newfloat]{minted}
\usepackage{tikz}
\usepackage{blindtext}
\newenvironment{code}{\captionsetup{type=listing}}{}
\SetupFloatingEnvironment{listing}{name=Código fuente}
\usepackage[bottom]{footmisc}
\hyphenation{clave-valor}
\tolerance=1
\emergencystretch=\maxdimen
\hyphenpenalty=10000
\hbadness=10000
\graphicspath{ {images/} }
\providecommand{\keywords}[1]{\textbf{\textit{keywords---}} #1}
\hypersetup{
colorlinks=true, %set true if you want colored links
linktoc=all, %set to all if you want both sections and subsections linked
linkcolor=blue, %choose some color if you want links to stand out
}
\setcounter{tocdepth}{5}
\setcounter{secnumdepth}{5}
\pagestyle{fancy}
\fancyhf{}
\fancyhead{}
\fancyfoot{}
\fancyfoot[LE,RO]{\thepage}
\setlength{\parindent}{2em}
\setlength{\parskip}{0.5em}
\renewcommand{\headrulewidth}{0.4pt}
\renewcommand{\footrulewidth}{0pt}
\fancypagestyle{plain}{%
\fancyhf{}
\fancyhead{}
\fancyfoot{}
\fancyfoot[LE,RO]{\thepage}
\setlength{\parindent}{2em}
\setlength{\parskip}{0.5em}
\renewcommand{\headrulewidth}{0.4pt}
\renewcommand{\footrulewidth}{0pt}
}
\theoremstyle{definition}
\newtheorem{definition}{Definition}[section]
\theoremstyle{remark}
\newtheorem*{remark}{Remark}
\usepackage[style=ieee,sorting=none]{biblatex}
\addbibresource{references.bib}
\title{Herramienta para transformar un modelo entidad-relación a un modelo no relacional}
\author{Martínez Acosta Eduardo, Aparicio Quiroz Omar}
\begin{document}
%%Portada
\input{titlepage}
\tableofcontents
\listoffigures
\listoftables
\input{abstract}
\chapter{Introducción}
\input{introduccion/main}
\chapter{Estado del arte}
\input{estadoArte/main}
\chapter{Marco teórico}
\input{marcoTeorico/main}
\chapter{Análisis del diseño}
\input{analisisDiseño/main}
\chapter{Diseño del sistema}
\input{analisisDiseño/diseño/main}
\chapter{Desarrollo del sistema}
\input{desarrollo/main}
\chapter{Caso de estudio}
\input{casoEstudio/main}
\chapter{Conclusiones y trabajo a futuro}
\input{trabajoFuturo/main}
\appendix
\chapter{Apéndice}
\input{apendice/uml}
\printbibliography
\end{document}