summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/unam-thesis/README.md
blob: 44ce0c4d66bf1328021538afb37a3bf5b72eadde (plain)
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
UNAM Class
====================

Class for creating dissertation documents according to the National Autonomous University of
Mexico (UNAM) guidelines.

This class inherits the book class, so, in escence one should create
volumes, chapters, front chapters, appendixes, and so on. Before using
this class the user must create the following document structure:

+ /working_directory/
  + thesis.tex
  + bibliography.bib
+ /tex/
  + frontMatter.tex
  + foreword.tex
  + chapter1.tex
  + chapterN.tex
  + appendix1.tex
  + appendixN.tex
+ /img/
  + pictures{.png, .jpg, .pdf}

Commands
---------------------

This class creates a cover page and title page from information
provided by the user, by default the user should insert comands to
indicate the information that will be displayed on the cover (which is
replicated in the second page). To specify the author you must insert
the command `\author{}`, to specify the title of the work the command
`\title{}` is needed, for creating the cover page the following
commands are defined:

+ `\tipotrabajo{tipo}`
Defines the type of document: (thesis, report, etc).
+ `\grado{grado}`
Defines the grade to obtain: (Bachelor, Master, PhD).
+ `\fechaexamen{fecha}` 
Defines the date of your examination: (April 30th, 2019).
+ `\asesor{asesor}`
Defines your advisor's name.
+ `\programaestudio{programa}`
+ `\campoconocimiento{conocimiento}`
+ `\campodisciplinario{disciplinario}`
+ `\instituto{instituto}`
+ `\facultad{facultad}`
+ `\universidad{universidad}`
+ `\escudouniversidad{escudoU}`
Points to the path (relative to the /img/ directory) of your university coat-of-arms.
+ `\escudofacultad{escudoF}`
Points to the path (relative to the /img/ directory) of your school coat-of-arms.
+ `\lugar{lugar}`
Defines the place where your exam will be applied.
+ `\tema{tema}`
Defines the topic of your work.
+ `\presidente{presidente}`
+ `\secretario{secretario}`
+ `\vocal{vocal}`
+ `\primersuplente{suplente1}`
+ `\segundosuplente{suplente2}`

Example
---------------------

A minimal working example should have this structure:

```
\documentclass[12pt]{unam-thesis}

%% Selección de la fuente a utilizar (modo texto y matemático)
%\usepackage[cmintegrals, cmbraces]{newtxmath}
%\usepackage{garamondx, ebgaramond-maths}
%\usepackage{garamondx, mathdesign}
\usepackage{garamondx} %% Fuente preferida (opcional)
\usepackage[garamondx, cmintegrals, cmbraces]{newtxmath} %% Fuente preferida (opcional)
%% Fin selección de la fuente

\author{Nombre Apellidos}
\title{Caracterización y mejora aerodinámica de un vehículo tipo ATV}
\grado{Maestro en Ingeniería}
\fechaexamen{2 de Mayo 2019}
\tipotrabajo{Tesis}
\asesor{Dr. Nombre Apellidos}
\instituto{Instituto Donde Estudio}
\facultad{Facultad de Ingeniería}
\universidad{Universidad Nacional Autónoma de México}
\lugar{Juriquilla, Querétaro}
\programaestudio{Programa de Maestría y Doctorado en Ingeniería Mecánica}
\campoconocimiento{Ingeniería automotriz}
\campodisciplinario{Mecánica}

\begin{document}
\frontmatter
\maketitle
\tableofcontents
\listoffigures

\input{tex/prefacio}

\mainmatter
\input{tex/introduccion}
\input{tex/marcoteorico}
\input{tex/desarrollo}
\input{tex/pruebas}
\input{tex/resultados}
\input{tex/conclusiones}

\appendix
\input{tex/programas}
\input{tex/planos}
\backmatter
\printbibliography[heading=bibintoc]

\end{document}
```

License
---------------------

unam-thesis is free software: you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

unam-thesis is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with unam-thesis. If not, see <https://www.gnu.org/licenses/>.