-
Notifications
You must be signed in to change notification settings - Fork 1
/
TESIS_UNI_main.tex
86 lines (57 loc) · 2.05 KB
/
TESIS_UNI_main.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
% Se usa la clase TesisUNI que es basada en la clase book
% Requiere que en la carpeta raíz se encuentre el archivo TesisUNI.cls
\documentclass[11pt,a4paper,oneside,english,spanish]{TesisUNI}
% PREAMBULO: configuración general
\input{0_0_PREAMBULO/Preambulo}
\begin{document}
%Configuraciones en el cuerpo del documento
\renewcommand{\BOthers}[1]{et al.\hbox{}} %Agregar et al. al citar referencias
\noindent % Sin sangría
\onehalfspacing % Interlineado 1.5 basado en el taamaño de fuente
%Parte INICIAL DE LA TESIS
\frontmatter
\include{1_1_PROTOCOLAR/Caratula}
\include{1_1_PROTOCOLAR/Licencia}
\include{1_1_PROTOCOLAR/Dedicatoria}
\include{1_1_PROTOCOLAR/Agradecimientos}
%Numeración Romana a partir del índice
\pagenumbering{roman} %\setcounter{iii}
%Cambiar nombre y crear ÍNDICE
\singlespacing
\renewcommand\contentsname{\centering ÍNDICE }
\tableofcontents
\onehalfspacing
\include{1_2_RESUMEN/Resumen}
\include{1_2_RESUMEN/Abstract}
\include{1_3_PROLOGO/Prologo}
%Cambiar nombre, crear ÍNDICE DE FIGURAS Y TABLAS
\renewcommand\listfigurename{\centering LISTA DE FIGURAS}
\renewcommand\listtablename{\centering LISTA DE TABLAS}
\cleardoublepage\phantomsection\addcontentsline{toc}{chapter}{\listtablename}
{\normalsize\listoftables}
\cleardoublepage\phantomsection\addcontentsline{toc}{chapter}{\listfigurename}
{\normalsize\listoffigures}
\include{1_4_SIMBOLOS/Simbolos}
%Parte CENTRAL DE LA TESIS
\mainmatter
%Numeracion Arabiga
%\setcounter{page}{0}
%\pagenumbering{arabic}
% INTRODUCCIÓN
\include{2_CAPITULO1/Capitulo1}
% FUNDAMENTO TEÓRICO Y CONCEPTUAL
\include{2_CAPITULO2/Capitulo2}
% CAPÍTULO 3
\include{2_CAPITULO3/Capitulo3}
% CAPÍTULO 4
\include{2_CAPITULO4/Capitulo4}
%Parte FINAL DE LA TESIS
\backmatter
% CONCLUSIONES Y RECOMENDACIONES
\include{3_1_CONCLUSIONES/Conclusiones}
\include{3_1_CONCLUSIONES/Recomendaciones}
% REFERENCIAS BIBLIOGRÁFICAS
\include{3_2_BIBLIOGRAFIA/Bibliografia}
% ANEXOS
\include{3_3_ANEXOS/Anexos}
\end{document}