1 \documentclass[12pt]{article} 2 \usepackage[spanish]{babel} 3 4 \usepackage{natbib} 5 \bibliographystyle{apalike} 6 7 \usepackage{url} 8 \usepackage[utf8]{inputenc} 9 \usepackage{amsmath} 10 \usepackage{graphicx} 11 \usepackage{parskip} 12 \usepackage{fancyhdr} 13 \usepackage{vmargin} 14 \usepackage[ddmmyy]{datetime} 15 \usepackage{anyfontsize} 16 \usepackage{helvet} 17 \renewcommand{\familydefault}{phv} 18 \usepackage{xcolor} 19 20 \usepackage{float} 21 \usepackage[section]{placeins} 22 \usepackage{tocloft} 23 24 % Alinear completamente el texto del índice de figuras al margen izquierdo 25 \setlength{\cftfigindent}{0pt} % sin sangría a la izquierda 26 \setlength{\cftfignumwidth}{2em} % ancho reservado para "Figura X" 27 28 \usepackage[T1]{fontenc} 29 30 \usepackage{arevmath} 31 32 % Definir tamaño por defecto para todas las figuras 33 \setkeys{Gin}{width=\textwidth, keepaspectratio} 34 35 % \setmarginsrb{ 36 % left margin, 37 % top margin, 38 % right margin, 39 % bottom margin, 40 % head height, 41 % head sep, 42 % foot height, 43 % foot skip 44 % } 45 \setmarginsrb{2.5 cm}{2.25 cm}{2.5 cm}{2 cm} 46 {1 cm}{1 cm}{1.25 cm}{1.5 cm} 47 48 \setlength{\skip\footins}{20pt} % default is around 10pt 49 50 \usepackage{color} 51 \usepackage{hyperref} 52 \hypersetup{ 53 colorlinks=true, % set true if you want colored links 54 linktoc=all, % set to all if you want sections and subsections linked 55 linkcolor=blue, % choose some color if you want links to stand out 56 urlcolor=blue, 57 citecolor=blue 58 } 59 60 \usepackage{subfig} 61 62 \AtBeginEnvironment{align}{ 63 \vspace{-1.20em} 64 } 65 66 \usepackage{fancyvrb} 67 \fvset{xleftmargin=\mathindent} 68 69 % code blocks 70 \usepackage{verbatimbox} 71 \newenvironment{fullgrayverb} 72 {\verbbox} 73 {\endverbbox\par\colorbox{gray!25}{\parbox{\textwidth}{\theverbbox}}\par} 74 75 % inline code blocks 76 \usepackage{tcolorbox} 77 \newcommand\mystrut{\rule[-3pt]{0pt}{12pt}} 78 \newtcbox{\code}{on line, boxrule=0pt, boxsep=0pt, top=0pt, 79 left=0pt, bottom=0pt, right=0pt, colback=gray!25, colframe=white, 80 fontupper={\ttfamily\mystrut}} 81 82 \title{Análisis de señales} % Titulo del trabajo. 83 \author{Klöckner, Lema Roveta, Dei Castelli} 84 \newcommand{\padron}{123456, 123456} % Padrón 85 \newcommand{\tpnumber}{1} % Número de trabajo práctico 86 \date{\today} % Fecha (automática) 87 88 \makeatletter 89 \let\thetitle\@title 90 \let\theauthor\@author 91 \let\thedate\@date 92 \makeatother 93 94 \pagestyle{fancy} 95 \fancyhf{} 96 \rhead{\theauthor} 97 \lhead{\thetitle} 98 \cfoot{\thepage} 99 100 \begin{document} 101 \begin{titlepage} 102 \vspace*{-2.5cm} 103 {\centering 104 \includegraphics[width=1.00\textwidth]{img/logofiuba.png}\\[2.25 cm]} 105 \centering 106 \textsc{\Large TB065}\\[0.2 cm] 107 \textsc{\large Señales y Sistemas}\\[4 cm] 108 \textcolor{cyan}{{\fontsize{40}{60}\selectfont \bfseries \thetitle}}\\[0.5cm] 109 {\Large \bfseries Trabajo Práctico Especial}\\[5cm] 110 111 \vfill 112 \noindent\makebox[\linewidth]{\rule{\textwidth}{0.4pt}}\\[0.5cm] 113 \begin{minipage}{.50\textwidth} 114 \textbf{Integrante}\\ 115 Martin Klöckner \\ Mateo Lema Roveta \\ Ernesto Dei Castelli 116 \end{minipage}% 117 \begin{minipage}{.25\textwidth} 118 \textbf{Legajo}\\ 119 123456 \\ 120 123456 \\ 121 123456 122 \end{minipage}% 123 \begin{minipage}{.25\textwidth} 124 \begin{flushright} 125 \textbf{Correo electrónico}\\ 126 \href{mailto:mklockner@fi.uba.ar}{mklockner@fi.uba.ar} \\ 127 \href{mailto:mlema@fi.uba.ar}{mlema@fi.uba.ar} \\ 128 \href{mailto:edei@fi.uba.ar}{edei@fi.uba.ar} 129 \end{flushright} 130 \end{minipage} 131 \end{titlepage} 132 133 \setcounter{tocdepth}{2} 134 \hypersetup{linkcolor=black} % colorlinks=true option is used 135 \tableofcontents 136 \listoffigures 137 \pagebreak 138 139 % \include{primera_parte} 140 141 % \include{segunda_parte} 142 143 \include{tercera_parte} 144 145 \bibliography{referencias} 146 147 \end{document}
