-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
113 lines (79 loc) · 2.98 KB
/
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
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
\documentclass[spanish,a4paper,12pt,oneside]{extreport}
\usepackage{lipsum}
% La documentación de overleaf dice que es mejor no hacer esto, pero todo el resto de Internet dice que lo haga así y su alternativa no va.
\input{system/preamble}
\begin{document}
\renewcommand\listtablename{Índice de Tablas}
\renewcommand\listfigurename{Índice de Figuras}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Preface
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\input{content/preface/cover}
\setlength{\parindent}{5mm}
\input{content/preface/tutor_certification}
\input{content/preface/acknowledgements}
\input{content/preface/license}
\input{content/preface/abstract}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\newpage{\pagestyle{empty}}
\thispagestyle{empty}
%Esto tampoco parece cambiar nada
%\markboth{\tfgTitle}{}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Indices
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%Numeracion en romanos
\renewcommand{\thepage}{\roman{page}}
\setcounter{page}{1}
\pagestyle{plain}
\tableofcontents
\newpage{\pagestyle{empty}}
\listoffigures
\newpage{\pagestyle{empty}}
\listoftables
% Página en blanco
\newpage{\pagestyle{empty}}
\thispagestyle{empty}
\null
% Ajuste de Númeración
\newpage
\thispagestyle{empty}
%Numeracion a partir del capitulo I
\renewcommand{\thepage}{\arabic{page}}
\setcounter{page}{1}
\pagestyle{plain}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Capitulos
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% El primero no puede usar la macro
\chapter{\LARGE Introducción}
\label{chapter:intro}
\input{content/chapter_intro}
\input{acronyms}
\tfgChapter{Objetivos, estado del arte y metodología de trabajo}{metodo_trabajo}{content/chapter_metodo_trabajo}
\tfgChapter{Diseño del sistema e implementación}{diseno_tec}{content/chapter_diseno_tec}
\tfgChapter{Modo de empleo}{modo_empleo}{content/chapter_modo_empleo}
\tfgChapter{Evaluación en un entorno real}{evaluacion_real}{content/chapter_evaluacion_real}
\tfgChapter{Conclusiones y líneas futuras}{conclusion}{content/chapter_conclusion}
\tfgChapter{Conclusions and future lines of work}{conclusions}{content/chapter_conclusions}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\newpage{\pagestyle{empty}\cleardoublepage}
\thispagestyle{empty}
\phantomsection
\addcontentsline{toc}{chapter}{Bibliografía}
\bibliography{bibliography}
\bibliographystyle{ieeetr}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\newpage{\pagestyle{empty}\cleardoublepage}
\phantomsection
\addcontentsline{toc}{chapter}{Glosario}
\printglossary[type=\acronymtype]
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\newpage{\pagestyle{empty}\cleardoublepage}
\begin{appendix}
\chapter{\LARGE Códigos}
\label{appendix:code}
\input{content/appendix_code.tex}
\end{appendix}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\end{document}