-
Notifications
You must be signed in to change notification settings - Fork 0
/
broker.tex
81 lines (62 loc) · 1.93 KB
/
broker.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
\documentclass[10pt, a4paper]{article}
\usepackage[paper=a4paper, left=1.5cm, right=1.5cm, bottom=1.5cm, top=3.5cm]{geometry}
\usepackage[latin1]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[spanish]{babel}
\usepackage{indentfirst}
\usepackage{fancyhdr}
\usepackage{latexsym}
\usepackage{lastpage}
\usepackage{aed2-symb,aed2-itef,aed2-tad}
\usepackage[colorlinks=true, linkcolor=blue]{hyperref}
\usepackage{calc}
\newcommand{\f}[1]{\text{#1}}
\renewcommand{\paratodo}[2]{$\forall~#2$: #1}
\sloppy
%El siguiente paquete permite escribir la caratula facilmente
\usepackage{caratula}
\hypersetup{
pdftitle={ Algoritmos y estructuras de datos II - TP1 },
colorlinks,
citecolor=black,
filecolor=black,
linkcolor=black,
urlcolor=black
}
%Datos para la caratula
\materia{Algoritmos y Estructuras de Datos II}
\titulo{TP 1 - Broker System}
%\fecha{DDDD dd de MMMM, AAAA}
\grupo{Grupo 20}
\integrante{Fernando Gasperi Jabalera}{56/09}{[email protected]}
\integrante{Esteban Romero}{659/06}{[email protected]}
\integrante{Leandro Tozzi}{-}{[email protected]}
\integrante{Alfredo Terrile Cendoya}{022/11}{freddy199\[email protected]}
\parskip=5pt % 10pt es el tamaño de fuente
% Pongo en 0 la distancia extra entre ?temes.
\let\olditemize\itemize
\def\itemize{\olditemize\itemsep=0pt}
% Acomodo fancyhdr.
\pagestyle{fancy}
\thispagestyle{fancy}
\addtolength{\headheight}{1pt}
\lhead{Algoritmos y Estructuras de Datos II}
\rhead{$1^{\mathrm{er}}$ cuatrimestre de 2014}
\cfoot{\thepage /\pageref{LastPage}}
\renewcommand{\footrulewidth}{0.4pt}
\author{Algoritmos y Estructuras de Datos II, DC, UBA.}
\date{}
\title{TP 1: Especificaci\'on \\ Broker System \\ Grupo: 20}
\begin{document}
%Pagina de titulo e indice
\thispagestyle{empty}
\maketitle
\tableofcontents
\newpage
% decisiones y observaciones
\include{./tex/observaciones}
%TADS
\include{./tex/tadBroker}
\include{./tex/tadPromesa}
\include{./tex/tadTitulo}
\end{document}