45 lines
1,018 B
TeX
45 lines
1,018 B
TeX
% !TEX encoding = UTF-8
|
|
|
|
\ProvidesPackage{mitssTitle}[2019/08/25]
|
|
\RequirePackage{graphicx}
|
|
\RequirePackage{geometry}
|
|
\RequirePackage[export]{adjustbox} % align images
|
|
|
|
\newcommand*{\supervisor}[1]{\gdef\@supervisor{#1}}
|
|
\newcommand*{\curso}[1]{\gdef\@curso{#1}}
|
|
|
|
\renewcommand*{\maketitle}{%
|
|
\newgeometry{margin=1in}
|
|
\begin{titlepage}
|
|
%\pagestyle{empty}
|
|
\makeatletter
|
|
{\centering
|
|
\includegraphics[width=.5\linewidth,valign=t]{title/logo-upv-cropped} \hfill
|
|
\includegraphics[width=.23\linewidth,valign=t]{title/logo-dsic}
|
|
}
|
|
|
|
\vfill
|
|
\begin{center}
|
|
{\huge\bfseries \@title} \\
|
|
\vspace{2em}
|
|
{\Large Trabajo Fin de Máster} \\
|
|
\vspace{2em}
|
|
\Large
|
|
\textbf{Máster Universitario en Ingeniería \\ y Tecnología de Sistemas Software} \\
|
|
\vspace{2em}
|
|
Departamento de Sistemas Informáticos y Computación
|
|
\end{center}
|
|
\vfill
|
|
{
|
|
\large
|
|
\raggedleft
|
|
\textbf{Autor}: \@author \\
|
|
\textbf{Tutor}: \@supervisor \\
|
|
Valencia, \@date \\
|
|
Curso \@curso \\
|
|
}
|
|
\end{titlepage}
|
|
\restoregeometry
|
|
} % maketitle
|
|
|
|
\endinput
|