-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDocumentoProyecto.tex
More file actions
91 lines (76 loc) · 2.65 KB
/
DocumentoProyecto.tex
File metadata and controls
91 lines (76 loc) · 2.65 KB
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
% % % % % % % % % % % % % % % % % % % % % %
% % % % % % Inicio del preámbulo % % % % % %
% % % % % % % % % % % % % % % % % % % % % %
\documentclass[12pt,a4paper]{report}
\usepackage[utf8]{inputenc}
\usepackage[spanish]{babel}
\usepackage{graphicx}
\usepackage[left=2cm,right=2cm,top=2cm,bottom=2cm,includeheadfoot]{geometry} % Para introducir texto en el margen
\usepackage{multicol}
\pagestyle{plain}
% % Configuración de márgenes
\setlength{\footskip}{2cm} % Distancia entre texto y final del pie
\usepackage{url}
% % Enlaces
\usepackage[colorlinks=true]{hyperref}
% % Configuración de tablas
\vspace{4cm} % Distancia vertical entre tablas
\renewcommand{\arraystretch}{1.3} % Espacio entre filas
% % Configuración de la bibliografía
\usepackage{natbib}
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % Fin del preambulo e inicio del cuerpo % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
\begin{document}
% % Primera página del documento
\begin{titlepage}
\begin{scriptsize}\noindent Facultad de Informática.\\
Ingeniería en Informática.\\
Ingeniería del Software.\\
Proyecto: Everywhere House Control.
\end{scriptsize}\\
\vfill
\begin{center}
\begin{Large}
\textbf{Proyecto IS}
\end{Large}
\end{center}
\vfill
\begin{flushright}
\begin{scriptsize}
\begin{tabular}{lll}
Creado por & Gutierrez, Hector & Guzman, Fernando\\
& Ladrón, Alejandro & Maldonado, Miguel Alexander\\
& Morales, Álvaro & Ochoa, Victor\\
& Rey, José Antonio & Saavendra, Luis Antonio\\
& Tirado, Colin & Vicente, Victor\\
\end{tabular}
\end{scriptsize}
\end{flushright}
\end{titlepage}
\thispagestyle{empty}
\cleardoublepage
\newpage
% % Tabla de contenidos, etc.
\pagenumbering{Roman}
\tableofcontents
\newpage
\thispagestyle{empty}
\cleardoublepage
\newpage
\pagenumbering{arabic}
\raggedbottom
\interfootnotelinepenalty 10000
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% % % % % % % % % Añadir archivos externos % % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
\input{HistorialCambios.tex}
\input{1.Vision/Vision.tex}
\input{2.GestionYPlanificacion/GestionYPlanificacion.tex}
\input{3.Analisis/ERS.tex}
\input{4.Disenio/DocDisenio.tex} %No le gusta la "ñ", asi que las sustituimos por "ni"
\input{5.Pruebas/Pruebas.tex}
\input{6.Extras/CasosDeUso/CasosDeUso.tex}
\input{7.PlanDeGestionDeRiesgos/PlanDeGestionDeRiesgos.tex}
\end{document}
% % % % % % Fin del cuerpo