More about WSDL 2.0
[PFCLatex/.git] / PFC.tex
1 \documentclass[12pt,a4paper,oneside,spanish]{book}
2 \usepackage[spanish]{babel} %%%Incluimos el paquete Babel que sirve para separar correctamente las palabras de multitud de idiomas%%%
3 \usepackage[utf8]{inputenc} %Uso codificacion utf8 en todo el documento.
4 %Knuth's computer modern:
5 \usepackage{lmodern} %Use latin modern fonts. Type 1. It is needed if you want to embed your fonts in the generated PDF file.
6 \usepackage[T1]{fontenc} %Type 1 font encoding.
7
8 \usepackage{amsmath}%%%Macros AMS%%%
9 \usepackage{amsthm}%%%Macros AMS para teoremas%%%
10 \usepackage{amsfonts}%%%Permite usar fuentes AMS%%%
11 \usepackage{amssymb}%%%Para usar simbolos AMS%%%
12 \usepackage{shadow}
13 \usepackage{indentfirst}%%%Espaciado deprimera línea de cada párrafo%%%
14 \usepackage{fancyhdr}
15 \linespread{1.5}
16 \usepackage{graphicx}
17 \usepackage{appendix} %%%Permite un manejo sencillo de los apéndices. Permite también introducir subapendices.
18 \usepackage[colorlinks=true]{hyperref}
19 \usepackage{graphics}
20 \usepackage{anysize} % Soporte para el comando \marginsize
21 \usepackage{theorem}
22 \usepackage{float}
23 \marginsize{3cm}{2cm}{2.5cm}{2.5cm}%Permite manejar los márgenes de forma sencilla
24 \usepackage[Lenny]{fncychap}
25 \usepackage{url}
26 \usepackage[official]{eurosym} %euro currency official sign.
27 \pagestyle{fancy}
28 \addtolength{\footskip}{+3cm}
29 \usepackage{fancyhdr}%Para un encabezado especial más visual
30 \usepackage{extramarks}
31 \usepackage{tabularx}
32 \usepackage[table]{xcolor}%This package is needed in order to use colors in the Latex tables.
33 \usepackage{caption}%Excluding items from list of figures and list of tables.
34 \usepackage[bottom]{footmisc}
35 \usepackage{lscape}
36 \usepackage{listings}
37 \hypersetup
38 {
39     bookmarks=true,
40     pdfauthor={Gustavo Martin Morcuende},
41     pdfsubject={Ingeniero de Telecomunicacion, Proyecto Final de Carrera},
42     pdftitle={Geolocalización y publicidad: el mundo como tablón de anuncios},
43     pdfkeywords={LaTeX, PDF, UAH, móvil, anuncio, GPS, telefonía, Symfony, PostGIS, PostgreSQL},
44     colorlinks=black,
45     linkcolor=black,
46     citecolor=black,
47     filecolor=black,
48     urlcolor=black,
49 }
50
51 %-----------------------------------------------------------------------------------------------
52 %-----------------------------------------------------------------------------------------------
53 %%% Inicio del documento
54 \begin{document}
55
56 \input{Portada/Portada.tex}%Portada
57
58 \pagestyle{plain} %Estilo a usar en las primeras paginas.
59 %==============================================================
60 % Acta
61 %===============================================================
62 \include{Acta/Acta}
63 \cleardoublepage
64
65 %==============================================================
66 %Agradecimientos
67 %==============================================================
68 \input{Agradecimientos/Agradecimientos}
69 \cleardoublepage
70
71 %===============================================================
72 %Índices
73 %===============================================================
74 %Declaración de extensiones de figuras para el paquete graphicx
75 \DeclareGraphicsExtensions{.jpg,.pdf,.mps,.png,.gif,.fig,.bmp}
76
77 \renewcommand\tablename{Tabla}
78 \renewcommand\listfigurename{Lista de Figuras}
79 \renewcommand\listtablename{Lista de Tablas}
80
81 \begingroup
82 \tableofcontents
83 \listoffigures
84 \listoftables
85 \endgroup
86
87 %==============================================================
88 %Resumenes
89 %==============================================================
90
91 %% Resumen en Castellano
92 \input{Resumen/Resumen}
93 \cleardoublepage
94 %% Resumen en Inglés
95 \input{Resumen/Abstract}
96 \cleardoublepage
97
98 %===============================================================
99 %Para el encabezado que se va a utilizar en todo el proyecto
100 %===============================================================
101 \pagestyle{fancy} %Estilo a usar en el resto del documento por defecto
102
103 \renewcommand{\sectionmark}[1]{\markright{\thesection\ #1}}
104 \fancyhf{} \fancyhead[LE,RO]{\bfseries\thepage}
105 \fancyhead[LO]{\bfseries\rightmark}
106 \fancyhead[RE]{\bfseries\leftmark}
107 \setlength{\headheight}{15pt}
108 %=============================================================
109
110 %=============================================================
111 %Capítulos
112 %=============================================================
113
114 % Using bullets by default in the first level of lists.
115 \renewcommand{\labelitemi}{$\bullet$}
116
117 \include{capitulo1/capitulo1}
118 \include{capitulo2/capitulo2}
119 \include{capitulo3/capitulo3}
120 \include{capitulo4/capitulo4}
121 \include{capitulo5/capitulo5}
122
123 %============================================================
124 %   Apéndices
125 %============================================================
126 \renewcommand{\appendixtocname}{APÉNDICES}%Cambia el nombre de toc para apéndices
127 \renewcommand{\appendixpagename}{APÉNDICES}%Cambia el nombre para la página
128 \renewcommand{\appendixname}{APÉNDICE}
129 \appendix
130 \appendixpage
131 \addappheadtotoc
132 \input{Presupuesto/Presupuesto}
133
134 %------------------------------------------------------------
135 %          Bibliography
136 % See: http://amath.colorado.edu/documentation/LaTeX/reference/faq/bibstyles.html
137 %------------------------------------------------------------
138 \bibliographystyle{plain}
139 %Show the bibliography section in the table of contents
140 \addcontentsline{toc}{chapter}{Referencias}
141 \renewcommand{\bibname}{Referencias}
142 \bibliography{myrefs}
143 %-------------------------------------------------------------
144
145 \end{document}