-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtesis.tex
executable file
·112 lines (94 loc) · 5.89 KB
/
tesis.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
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% FORMATO DE TESIS FI UNAM %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% based on Harish Bhanderi's PhD/MPhil template, then Uni Cambridge
% http://www-h.eng.cam.ac.uk/help/tpl/textprocessing/ThesisStyle/
% corrected and extended in 2007 by Jakob Suckale, then MPI-iCBG PhD programme
% and made available through OpenWetWare.org - the free biology wiki
% Under GNU License
% ADAPTADO PARA FI-UNAM: Jesús Velázquez y Marco Ruiz
\documentclass[twoside,11pt]{Latex/Classes/PhDthesisPSnPDF}
% PUEDEN INCLUIR EN ESTE ESPACIO LOS PAQUETES EXTRA, O BIEN, EN EL ARCHIVO "PhDthesisPSnPDF.cls" EN "./Latex/Classes/"
\usepackage{blindtext} % Para insertar texto Lorem ipsum a traves de la etiqueta \blindtext.
\usepackage[]{algorithm2e} % Paquete para ulitizar pseudocódigo.
\include{Latex/Macros/MacroFile1} % Archivo con funciones útiles
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% DATOS %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\title{Título de la tesis}
\author{Julio César Guzmán Villanueva}
\degree{Ingeniero en Computación} % Carrera
\director{Ing. Stalin Muñoz Gutierrez} % Director de tesis
\degreedate{2015} % Año de la fecha del examen
\lugar{México, D.F.} % Lugar
%\portadafalse % Portada en NEGRO, descomentar y comentar la línea siguiente si se quiere utilizar
\portadatrue % Portada en COLOR
\keywords{tesis,autor,tutor,etc} % Palablas clave para los metadatos del PDF
\subject{tema_1,tema_2} % Tema para metadatos del PDF
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% PORTADA %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
\begin{titlepage}
\maketitle
\end{titlepage}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% PRÓLOGO %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\frontmatter
\include{Agradecimientos/Dedicatoria} % Comentar línea si no se usa
\include{Agradecimientos/Agradecimientos} % Comentar línea si no se usa
\include{Declaracion/Declaracion} % Comentar línea si no se usa
\include{Resumen/Resumen} % Comentar línea si no se usa
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% ÍNDICES %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%Esta sección genera el índice
\setcounter{secnumdepth}{3} % organisational level that receives a numbers
\setcounter{tocdepth}{3} % print table of contents for level 3
\tableofcontents % Genera el índice
%: ----------------------- list of figures/tables ------------------------
\listoffigures % Genera el ínidce de figuras, comentar línea si no se usa
\listoftables % Genera índice de tablas, comentar línea si no se usa
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% CONTENIDO %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% the main text starts here with the introduction, 1st chapter,...
\mainmatter
\def\baselinestretch{1.5} % Interlineado de 1.5
\include{Capitulo1/Introduccion} % ~10 páginas - Explicar el propósito de la tesis
\include{Capitulo2/Marco_teorico} % ~20 páginas - Poner un contexto a la tesis, hacer referencia a trabajos actuales en el tema
\include{Capitulo3/Diseno_del_experimento} % ~20 páginas - Explicar el problema en específico que se va a resolver, la metodología y experimentos métodos utilizados
\include{Capitulo4/Resultados} % ~20 páginas - Presentar los resultados tal cual son, y analizarlos.
\include{Capitulo5/Conclusiones} % ~5 páginas - Resumir lo que se hizo y lo que no y comentar trabajos futuros sobre el tema
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% APÉNDICES %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\appendix
\include{Apendice1/Apendice1} % Colocar los circuitos, manuales, código fuente, pruebas de teoremas, etc.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{small} % tiny(5) < scriptsize(7) < footnotesize(8) < small (9)
\bibliographystyle{Latex/Classes/PhDbiblio-url2} % Title is link if provided
\bibliography{Bibliografia/Referencias} % Archivo .bib
\end{small}
% --------------------------------------------------------------
% existen varios estilos de bilbiografía, pueden cambiarlos a placer
% in-text refs: (1) (1; 2)
% ref list: alphabetical; author(s) in small caps; initials last name; page(s)
%\bibliographystyle{Latex/Classes/PhDbiblio-case} % title forced lower case
%\bibliographystyle{Latex/Classes/PhDbiblio-bold} % title as in bibtex but bold
%\bibliographystyle{Latex/Classes/PhDbiblio-url} % bold + www link if provided
%\bibliographystyle{Latex/Classes/jmb} % calls style file jmb.bst
% in-text refs: author (year) without brackets
% ref list: alphabetical; author(s) in normal font; last name, initials; page(s)
%\bibliographystyle{plainnat} % calls style file plainnat.bst
% in-text refs: author (year) without brackets
% (this works with package natbib)
% --------------------------------------------------------------
% according to Dresden med fac summary has to be at the end
%\include{0_frontmatter/abstract}
%: Declaration of originality
%\include{9_backmatter/declaration}
\end{document}