summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/unamth-template/tesis.tex
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
committerNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
commite0c6872cf40896c7be36b11dcc744620f10adf1d (patch)
tree60335e10d2f4354b0674ec22d7b53f0f8abee672 /macros/latex/contrib/unamth-template/tesis.tex
Initial commit
Diffstat (limited to 'macros/latex/contrib/unamth-template/tesis.tex')
-rw-r--r--macros/latex/contrib/unamth-template/tesis.tex98
1 files changed, 98 insertions, 0 deletions
diff --git a/macros/latex/contrib/unamth-template/tesis.tex b/macros/latex/contrib/unamth-template/tesis.tex
new file mode 100644
index 0000000000..2321f425d2
--- /dev/null
+++ b/macros/latex/contrib/unamth-template/tesis.tex
@@ -0,0 +1,98 @@
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% 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 v3
+
+% 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 dummy, de ejemplo, pues.
+% Note:
+% The \blindtext or \Blindtext commands throughout this template generate dummy text
+% to fill the template out. These commands should all be removed when
+% writing thesis content.
+\include{Latex/Macros/MacroFile1} % Archivo con funciones útiles
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% DATOS %
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+\title{Título de la tesis}
+\author{Nombres Apellido1 Apellido2}
+\degree{Ingeniero en Carrera} % Carrera
+\director{Dr. Emmet L. Brown} % Director de tesis
+\degreedate{2112} % 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}
+
+\maketitle % Se redefinió este comando en el archivo de la clase para generar automáticamente la portada a partir de los datos
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% 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_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_y_analisis} % ~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.
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% REFERENCIAS %
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% existen varios estilos de bilbiografía, pueden cambiarlos a placer
+\bibliographystyle{apalike} % otros estilos pueden ser abbrv, acm, alpha, apalike, ieeetr, plain, siam, unsrt
+
+%El formato trae otros estilos, o pueden agregar uno que les guste:
+%\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
+
+\bibliography{Bibliografia/referencias} % Archivo .bib
+
+
+\end{document} \ No newline at end of file