-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathIST-SARO.tex
136 lines (114 loc) · 3.61 KB
/
IST-SARO.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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
% main.tex
% Fichero principal de transparencias (incluye a todos los demás).
% Compilar a .pdf con LaTeX (pdflatex)
% Es necesario instalar Beamer (paquete latex-beamer en Debian)
%
% Gráficos:
% Los gráficos pueden suministrarse en PNG, JPG, TIF, PDF, MPS
% Los EPS deben convertirse a PDF (usar epstopdf)
%
\documentclass{beamer}
\usetheme{Warsaw}
\beamertemplatenavigationsymbolsempty
\setbeamertemplate{headline}{}
\useoutertheme{infolines}
%\usebackgroundtemplate{\includegraphics[width=\paperwidth]{format/libresoft-bg-soft.png}}
\usepackage[spanish]{babel}
\usepackage[utf8]{inputenc}
\usepackage{graphics}
\usepackage{amssymb} % Simbolos matematicos
\usepackage{multirow}
\newcommand{\asignatura}{Servicios y Aplicaciones en Redes de Ordenadores}
\newcommand{\grado}{Grado en Ingeniería de Sistemas de Telecomunicación (URJC)}
\newcommand{\curso}{2024-25}
\newcommand{\horario}{M (9:00-11:00) y J (9:00-11:00)}
\newcommand{\labo}{L3209}
%% Metadatos del PDF.
\hypersetup{
pdftitle={\asignatura~\curso},
pdfauthor={Jesús M. González Barahona, Gregorio Robles, David Moreno, Alberto Rodríguez, Alberto García, Sergio Montes},
pdfcreator={GSyC, Universidad Rey Juan Carlos},
pdfproducer=PDFLaTeX,
pdfsubject={\asignatura~\curso},
}
%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% include-only %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\includeonly{presentacion-saro-sat-st,cookies,rest,mvc,xml,css,ajax,python,aplicacionesWeb,django,bootstrap,final}
%\includeonly{presentacion-saro-sat-st,final}
%\includeonly{cookies}
%\includeonly{rest}
%\includeonly{mvc}
%\includeonly{xml}
%\includeonly{css}
%\includeonly{ajax}
%\includeonly{www-applications}
%\includeonly{caso-comunidades}
%\includeonly{complex-www-sites}
%\includeonly{ldap,webdav}
%\includeonly{webdav}
%\includeonly{xml,webdav}
%\includeonly{streaming}
%\includeonly{streaming, sdp}
%\includeonly{streaming,smil}
%\includeonly{smil}
%\includeonly{security-intro,security-ipsec,security-ssl}
%\includeonly{webdav,security-ssl}
%% Prácticas
%\includeonly{python}
%\includeonly{sql}
%\includeonly{django}
\AtBeginSection[]
{
\begin{frame}<beamer>
\begin{center}
{\Huge \insertsection}
\end{center}
\end{frame}
}
% Si el titulo o el autor se quieren acortar para los pies de página
% se pueden redefinir aquí:
%\title{Titulo corto}
%\author{Autores abreviado}
\begin{document}
\title[\asignatura~\curso]{\asignatura~(\curso)}
\subtitle{\grado}
\author[GSyC]{Jesús M. González Barahona, Gregorio Robles, David Moreno, \\ Alberto Rodríguez, Alberto García, Sergio Montes}
\institute[http://cursosweb.github.io/]{\url{http://cursosweb.github.io} \\
GSyC, Universidad Rey Juan Carlos}
%\date{Enero 2015}
\frame{
\maketitle
\begin{center}
\includegraphics[width=6cm]{format/gsyc-urjc}
\end{center}
}
\frame{
\tableofcontents
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% lista de temas %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\include{presentacion-saro-sat-st}
\include{cookies}
\include{rest}
\include{mvc}
\include{xml}
\include{ajax}
\include{python}
\include{sql}
\include{aplicacionesWeb}
\include{django}
\include{css}
\include{bootstrap}
\include{final}
\end{document}
%%% Local Variables:
%%% mode: latex
%%% TeX-master: t
%%% End: