-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathmemoria.tex
146 lines (112 loc) · 4.48 KB
/
memoria.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
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Plantilla para Memorias y Tesis, UTFSM, Chile
% =============================================
%
% Autor:
% Jaime C. Rubin-de-Celis <[email protected]>
%
% Fecha:
% $Date: 2023-01-11 01:05:21 -0300$
%
% Versión:
% 2.0
%
% Licencia:
% Copyright (c) 2012-2023, Jaime C. Rubin-de-Celis
% The MIT License
%
% Nota:
% Las imágenes son propiedad intelectual de la UTFSM.
%
% Uso:
% Ver archivo adjunto README.md.
% Si todo lo demás falla, recuerde "RTFM".
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\documentclass[
11pt, % Tamaño de fuente (11pt)
letterpaper, % Tamaño del papel (carta)
]{thesis_utfsm}
\usepackage{thesis_utfsm} % Archivo de estilos
\input{config} % Configuración (Título, autor, etc.)
% Modificar este documento
% para actualizar la portada.
\makeatother % Important! (Do not delete or move!)
% Generadores de texto aleatorio (se pueden eliminar)
\usepackage{blindtext} % automated text generation
% \usepackage{lipsum} % automated text generation
% Archivo de bibiliografía
\addbibresource{bibliography.bib} % Reemplazar por su bibligrafía
%---------------------------------------------------------------------------
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Documento
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
\pagestyle{plain} % Headers & Footers (Roman numbers)
%---------------------------------------------------------------------------
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Portada
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\insertFile{portada} % Insertar archivo 'sections/portada.tex'.
%---------------------------------------------------------------------------
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Preámbulo (Front Matter)
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\frontmatter % Important! (Do not delete or move!)
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%---------------------------------------------------------------------------
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Dedicatoria (Opcional)
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\dedicatoria{%
\emph{\huge A mi familia \dots}
\vspace*{2cm} Puede ocupar este espacio para escribir una
dedicatoria (opcional). [Revise el archivo maestro
\inlinecode{memoria.tex} para modificar / eliminar esta sección.]
}%
%---------------------------------------------------------------------------
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Agradecimientos (Opcional)
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\section*{(AGRADECIMIENTOS) [Título es opcional] }
\insertFile[empty]{agradecimientos} % Insertar 'includes/agradecimientos.tex'.
\section*{RESUMEN EJECUTIVO}
\insertFile[plain]{resumen} % Insertar 'includes/resumen.tex'.
\section*{ABSTRACT}
\insertFile[plain]{abstract} % Insertar 'includes/abstract.tex'.
%---------------------------------------------------------------------------
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Tabla de Contenidos, Tabla de Cuadros, Tabla de Figuras, etc.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{spacing}{1} % Single space for TOC, LOF and LOT
\tableofcontents\listoftables\listoffigures
\end{spacing}
%---------------------------------------------------------------------------
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Cuerpo Principal (Main Matter)
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\mainmatter % Important! (Do not delete or move!)
\pagestyle{fancy} % Headers & Footers (Arabic numbers)
% Incluir/Eliminar Capítulos
\input{includes/capitulo01}
\input{includes/capitulo02}
\input{includes/capitulo03}
\input{includes/tikz}
%... % Agregar aquí más capítulos
%---------------------------------------------------------------------------
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Bibliografía
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{spacing}{1} % Single space for Bibliography
\printbibliography
\end{spacing}
%---------------------------------------------------------------------------
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Anexos (Opcional)
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{appendix}
\input{includes/anexo}
\input{includes/legacy}
%... % Agregar más apéndices
\end{appendix}
\end{document}