2019-07-01 19:40:34 +02:00
|
|
|
% !TEX encoding = UTF-8 Unicode
|
|
|
|
|
2020-05-24 04:35:06 +02:00
|
|
|
\documentclass[letterpaper,11pt]{article}
|
2019-07-01 19:40:34 +02:00
|
|
|
|
|
|
|
%A Few Useful Packages
|
|
|
|
%\usepackage{marvosym}
|
|
|
|
\usepackage{fontspec} %for loading fonts
|
|
|
|
\usepackage{xunicode,xltxtra,url,parskip} %other packages for formatting
|
2019-06-27 20:14:41 +02:00
|
|
|
\usepackage{graphicx}
|
2019-07-01 19:40:34 +02:00
|
|
|
\usepackage[usenames,dvipsnames]{xcolor}
|
|
|
|
\usepackage[left=1.3cm,
|
2020-05-21 02:48:18 +02:00
|
|
|
top=0.9cm,
|
2019-07-01 19:40:34 +02:00
|
|
|
right=1.3cm,
|
|
|
|
bottom=1.2cm,
|
|
|
|
nohead,
|
|
|
|
nofoot
|
|
|
|
]{geometry}
|
|
|
|
\usepackage{tabularx}
|
|
|
|
\usepackage{titlesec}
|
|
|
|
%\usepackage{tabto} % tab spacing
|
2019-06-27 20:14:41 +02:00
|
|
|
|
2019-07-01 19:40:34 +02:00
|
|
|
\usepackage{setspace} % line spacing
|
|
|
|
\usepackage{booktabs,colortbl} % thicker rules between table cells
|
|
|
|
\usepackage{bibentry} % bibliography
|
2019-07-01 19:35:46 +02:00
|
|
|
|
2019-07-01 19:40:34 +02:00
|
|
|
% SORTED LISTS
|
|
|
|
\usepackage{paralist}
|
|
|
|
\usepackage{datatool}% http://ctan.org/pkg/datatool
|
|
|
|
\newcommand{\sortitem}[1]{%
|
|
|
|
\DTLnewrow{list}% Create a new entry
|
|
|
|
\DTLnewdbentry{list}{description}{#1}% Add entry as description
|
|
|
|
}
|
|
|
|
\newenvironment{sortedlist}{%
|
|
|
|
\DTLifdbexists{list}{\DTLcleardb{list}}{\DTLnewdb{list}}% Create new/discard old list
|
|
|
|
}{%
|
|
|
|
\DTLsort{description}{list}% Sort list
|
|
|
|
\begin{inparaitem}[]%
|
|
|
|
\DTLforeach*{list}{\theDesc=description}{%
|
|
|
|
\item \theDesc, }% Print each item
|
|
|
|
\end{inparaitem}%
|
|
|
|
}
|
2019-07-01 19:35:46 +02:00
|
|
|
|
2019-07-01 19:40:34 +02:00
|
|
|
%Setup hyperref package, and colours for links
|
|
|
|
\usepackage[colorlinks,
|
|
|
|
breaklinks,
|
|
|
|
pagebackref=false,
|
|
|
|
debug=true,
|
|
|
|
xetex,
|
|
|
|
bookmarks=false,
|
|
|
|
pdfpagelabels=false,
|
|
|
|
hyperfootnotes=false,
|
|
|
|
hyperindex=false,
|
|
|
|
pageanchor=false]{hyperref}
|
|
|
|
\definecolor{linkcolor}{gray}{0.2}
|
|
|
|
\hypersetup{
|
2021-01-10 11:35:29 +01:00
|
|
|
pdfauthor={Amin Kasrou Aouam},
|
|
|
|
pdfsubject={Amin Kasrou Aouam - Resume},
|
|
|
|
pdftitle={Amin Kasrou Aouam - Resume},
|
2019-07-01 19:40:34 +02:00
|
|
|
urlcolor=linkcolor,
|
|
|
|
linkcolor=linkcolor
|
2019-06-27 20:14:41 +02:00
|
|
|
}
|
2019-07-01 19:40:34 +02:00
|
|
|
% colors
|
|
|
|
\definecolor{dark-gray}{gray}{0.15}
|
|
|
|
\definecolor{light-gray}{gray}{0.55}
|
2019-06-27 20:14:41 +02:00
|
|
|
|
2019-07-01 19:40:34 +02:00
|
|
|
%FONTS
|
2021-01-10 11:35:29 +01:00
|
|
|
\setmainfont{Liberation Serif}
|
|
|
|
\newfontfamily{\hlight}{Liberation Serif}
|
|
|
|
\defaultfontfeatures{Mapping=tex-text} % converts LaTeX specials (``quotes'' --- dashes etc.) to unicode
|
2019-08-24 01:13:02 +02:00
|
|
|
\usepackage{fontawesome5} % glyphs for contact info
|
2019-06-27 20:14:41 +02:00
|
|
|
|
2019-07-01 19:40:34 +02:00
|
|
|
% CUSTOM COMMANDS
|
|
|
|
\newcommand{\titlerulethick}{{%
|
2020-05-21 02:48:18 +02:00
|
|
|
{\color{dark-gray} \titlerule[0.5mm] }%
|
2019-07-01 19:40:34 +02:00
|
|
|
}}
|
2019-06-27 20:14:41 +02:00
|
|
|
|
2019-07-01 19:40:34 +02:00
|
|
|
% old section title format
|
2020-05-21 02:48:18 +02:00
|
|
|
\titleformat{\section}{\fontsize{28pt}{38pt}\color{dark-gray}\normalfont}{}{0mm}{}[\titlerulethick]
|
2019-07-01 19:40:34 +02:00
|
|
|
%\titlespacing{\section}{0pt}{3pt}{3pt}
|
2019-06-27 20:14:41 +02:00
|
|
|
|
2019-07-01 19:40:34 +02:00
|
|
|
\newcommand{\namefont}[1]{{%
|
|
|
|
\fontsize{42pt}{50pt}\normalfont\textbf{#1}%
|
|
|
|
}}
|
2019-06-27 20:14:41 +02:00
|
|
|
|
2019-07-01 19:40:34 +02:00
|
|
|
\newcommand{\spacerule}{
|
|
|
|
\addlinespace[0.5em]
|
|
|
|
\midrule[0.5mm]
|
|
|
|
\addlinespace[0.5em]
|
|
|
|
}
|
2019-06-27 20:14:41 +02:00
|
|
|
|
2019-07-01 19:40:34 +02:00
|
|
|
\newcommand{\bigfont}[1]{{%
|
|
|
|
\fontsize{32pt}{38pt}\normalfont{#1} %
|
|
|
|
}}
|
2019-06-27 20:14:41 +02:00
|
|
|
|
2019-07-01 19:40:34 +02:00
|
|
|
\newcommand{\lightfont}[1]{{%
|
2021-01-10 11:35:29 +01:00
|
|
|
{\hlight#1}
|
2019-07-01 19:40:34 +02:00
|
|
|
}}
|
2019-06-27 20:14:41 +02:00
|
|
|
|
2019-07-01 19:40:34 +02:00
|
|
|
\newcommand{\contactinfo}{%
|
|
|
|
{\hlight\color{dark-gray}}
|
|
|
|
}
|
|
|
|
|
|
|
|
\newcommand{\lightsmall}[1]{{%
|
2021-01-10 11:35:29 +01:00
|
|
|
{\fontsize{11pt}{14pt}\hlight#1}
|
2019-07-01 19:40:34 +02:00
|
|
|
}}
|
|
|
|
|
|
|
|
\newcommand{\pubstyle}[1]{{%
|
2021-01-10 11:35:29 +01:00
|
|
|
{\fontsize{10pt}{13pt}\hlight#1}
|
2019-07-01 19:40:34 +02:00
|
|
|
}}
|
2019-06-27 21:29:38 +02:00
|
|
|
|
2019-07-01 19:40:34 +02:00
|
|
|
\newcommand{\lightbf}[1]{{%
|
|
|
|
\textbf{\lightfont{#1}}
|
|
|
|
}}
|
|
|
|
|
|
|
|
\newcommand{\emphasized}[1]{{%
|
2020-05-21 02:48:18 +02:00
|
|
|
{\fontsize{12pt}{14pt}\textbf{#1}}
|
2019-07-01 19:40:34 +02:00
|
|
|
}}
|
|
|
|
|
|
|
|
\newcommand{\position}[1]{{%
|
2020-05-21 02:48:18 +02:00
|
|
|
{\fontsize{12pt}{14pt} \hlight{#1}}
|
2019-07-01 19:40:34 +02:00
|
|
|
}}
|
|
|
|
|
|
|
|
\newcommand{\company}[1]{{%
|
2020-05-21 02:48:18 +02:00
|
|
|
{\fontsize{12pt}{14pt} \textbf{#1}}
|
2019-07-01 19:40:34 +02:00
|
|
|
}}
|
|
|
|
|
|
|
|
\newcommand{\headline}{
|
2021-01-10 11:35:29 +01:00
|
|
|
{\fontsize{14pt}{17pt}\bfseries\color{dark-gray}}
|
2019-07-01 19:40:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
\newcommand{\name}{
|
2021-01-10 11:35:29 +01:00
|
|
|
\raggedright\fontsize{38pt}{38pt}\bfseries\flushleft\color{dark-gray}{Amin
|
|
|
|
Kasrou Aouam}
|
2019-07-01 19:40:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
\newcommand{\lighthrule}{
|
2020-05-21 02:48:18 +02:00
|
|
|
{\color{light-gray}\par\rule[0mm]{\hsize}{0.5mm}\par\vspace{0.0em}}
|
2019-07-01 19:40:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
% hack to remove bibliography numbering
|
|
|
|
\makeatletter
|
|
|
|
\renewcommand\@biblabel[1]{}
|
|
|
|
\renewenvironment{thebibliography}[1]
|
|
|
|
{\section*{\refname}%
|
|
|
|
\@mkboth{\MakeUppercase\refname}{\MakeUppercase\refname}%
|
|
|
|
\list{}%
|
|
|
|
{\leftmargin0pt
|
2021-01-10 11:35:29 +01:00
|
|
|
\@openbib@code
|
|
|
|
\usecounter{enumiv}}%
|
2019-07-01 19:40:34 +02:00
|
|
|
\sloppy
|
|
|
|
\clubpenalty4000
|
|
|
|
\@clubpenalty \clubpenalty
|
|
|
|
\widowpenalty4000%
|
|
|
|
\sfcode`\.\@m}
|
|
|
|
{\def\@noitemerr
|
|
|
|
{\@latex@warning{Empty `thebibliography' environment}}%
|
|
|
|
\endlist}
|
|
|
|
\makeatother
|
|
|
|
%
|
|
|
|
%-------------------- BEGIN DOCUMENT ----------------------
|
|
|
|
\begin{document}
|
2021-01-10 11:35:29 +01:00
|
|
|
%\nocite{}
|
2019-07-01 19:40:34 +02:00
|
|
|
\pagestyle{empty} % non-numbered pages
|
|
|
|
\font\fb=''[cmr10]'' %for use with \LaTeX command
|
|
|
|
%---------- SPECIFY LENGTHS ----------
|
|
|
|
\newlength{\leftwide}
|
|
|
|
\setlength{\leftwide}{0.34\textwidth}
|
|
|
|
%
|
|
|
|
\newlength{\centerwide}
|
|
|
|
\setlength{\centerwide}{0.33\textwidth}
|
|
|
|
%
|
|
|
|
\newlength{\rightwide}
|
|
|
|
\setlength{\rightwide}{0.28\textwidth}
|
|
|
|
%---------- TOP SECTION ----------
|
|
|
|
\begin{tabular}[b]{@{}p{\leftwide}@{}p{\centerwide}@{}p{\rightwide}@{}}
|
|
|
|
% NAME (left)
|
|
|
|
\noindent
|
|
|
|
\begin{minipage}[b]{\leftwide}
|
|
|
|
\name
|
|
|
|
\end{minipage} & %
|
2019-07-08 16:06:06 +02:00
|
|
|
% CONTACT INFO (middle)
|
2019-07-08 15:24:08 +02:00
|
|
|
\begin{minipage}[b]{\centerwide}
|
2019-07-01 19:40:34 +02:00
|
|
|
\renewcommand\arraystretch{1.25}
|
|
|
|
\contactinfo
|
|
|
|
\begin{tabular}[b]{@{}cl@{}}
|
2021-01-10 11:35:29 +01:00
|
|
|
\faEnvelope & \href{mailto:akasroua@gmail.com}{akasroua@gmail.com}\\ %{}
|
|
|
|
\faPhone & +34 658591161\\
|
|
|
|
\faGitlab & \href{https://gitlab.com/akasroua}{gitlab.com/akasroua}\\
|
2019-07-01 19:40:34 +02:00
|
|
|
\end{tabular}
|
2019-07-08 16:06:06 +02:00
|
|
|
\end{minipage} & %
|
|
|
|
% PHOTO (right)
|
|
|
|
\begin{minipage}[b]{\rightwide}
|
2019-12-05 20:38:45 +01:00
|
|
|
\includegraphics[width=7em]{Assets/photo.png}
|
2019-07-08 16:06:06 +02:00
|
|
|
\end{minipage}
|
2019-07-01 19:40:34 +02:00
|
|
|
\end{tabular}
|
|
|
|
%---------- MAIN BODY ----------
|
2019-07-11 07:23:52 +02:00
|
|
|
% ABOUT
|
2021-01-10 11:35:29 +01:00
|
|
|
\vspace{-3.2em}
|
|
|
|
{\section{}
|
2019-07-11 07:23:52 +02:00
|
|
|
\parbox[t][][t]{\textwidth}{
|
2021-01-10 11:35:29 +01:00
|
|
|
Estudiante de Ingeniería Informática, interesado en las áreas de
|
|
|
|
inteligencia artificial, bioinformática, infraestructura como código
|
|
|
|
(IaC), sistemas distribuidos e inmutables.
|
|
|
|
|
|
|
|
Busco una oportunidad laboral instructiva, con un énfasis en el
|
|
|
|
trabajo en grupo y la colaboración.
|
2019-07-11 07:23:52 +02:00
|
|
|
}
|
2019-07-01 19:40:34 +02:00
|
|
|
%---------- LEFT SIDE ----------
|
2020-05-24 04:35:06 +02:00
|
|
|
\newlength{\hwide}
|
2019-07-01 19:40:34 +02:00
|
|
|
\begin{minipage}[t]{0.31\textwidth}
|
|
|
|
\raggedright
|
2019-07-11 07:23:52 +02:00
|
|
|
% PROGRAMMING
|
2021-01-10 11:35:29 +01:00
|
|
|
\ifthenelse{\equal{es}{en}}
|
2019-12-06 13:55:46 +01:00
|
|
|
{\section{programming}}
|
|
|
|
{\section{programación}}%
|
2020-05-24 04:35:06 +02:00
|
|
|
\setlength{\parskip}{1mm}
|
|
|
|
\setlength{\hwide}{\dimexpr.5\hsize-3\tabcolsep}
|
|
|
|
%
|
2019-07-11 07:23:52 +02:00
|
|
|
\hlight
|
2020-05-24 04:35:06 +02:00
|
|
|
\begin{tabular}{@{}p{\hwide}p{\centerwide}}
|
2021-01-10 11:35:29 +01:00
|
|
|
\parbox[t][][t]{\hwide}{%
|
|
|
|
\emphasized{Python}
|
2020-05-24 04:35:06 +02:00
|
|
|
\medskip
|
|
|
|
} & %
|
|
|
|
\parbox[t][][t]{\centerwide}{%
|
2021-01-10 11:35:29 +01:00
|
|
|
\lightbf{Avanzado}
|
2020-05-24 04:35:06 +02:00
|
|
|
\medskip
|
|
|
|
} \\ %
|
2021-01-10 11:35:29 +01:00
|
|
|
\parbox[t][][t]{\hwide}{%
|
|
|
|
\emphasized{C++}
|
|
|
|
\medskip
|
|
|
|
} & %
|
|
|
|
\parbox[t][][t]{\centerwide}{%
|
|
|
|
\lightbf{Intermedio}
|
|
|
|
\medskip
|
|
|
|
} \\ %
|
|
|
|
\parbox[t][][t]{\hwide}{%
|
|
|
|
\emphasized{Nix}
|
|
|
|
\medskip
|
|
|
|
} & %
|
|
|
|
\parbox[t][][t]{\centerwide}{%
|
|
|
|
\lightbf{Intermedio}
|
|
|
|
\medskip
|
|
|
|
} \\ %
|
|
|
|
\parbox[t][][t]{\hwide}{%
|
|
|
|
\emphasized{Java}
|
|
|
|
\medskip
|
|
|
|
} & %
|
|
|
|
\parbox[t][][t]{\centerwide}{%
|
|
|
|
\lightbf{Básico}
|
|
|
|
\medskip
|
|
|
|
} \\ %
|
|
|
|
\parbox[t][][t]{\hwide}{%
|
|
|
|
\emphasized{PHP}
|
|
|
|
\medskip
|
|
|
|
} & %
|
|
|
|
\parbox[t][][t]{\centerwide}{%
|
|
|
|
\lightbf{Básico}
|
|
|
|
\medskip
|
|
|
|
} \\ %
|
|
|
|
\end{tabular}
|
2019-07-01 20:24:57 +02:00
|
|
|
|
2019-07-11 07:23:52 +02:00
|
|
|
% TECHNOLOGIES
|
|
|
|
%
|
2021-01-10 11:35:29 +01:00
|
|
|
\ifthenelse{\equal{es}{en}}
|
2020-05-21 02:48:18 +02:00
|
|
|
{\section{technical skills}}
|
|
|
|
{\section{tecnologías}}%
|
2019-07-11 07:23:52 +02:00
|
|
|
\hlight
|
2020-05-21 02:48:18 +02:00
|
|
|
\begin{itemize}[]
|
2021-01-10 11:35:29 +01:00
|
|
|
\item{Linux/FreeBSD}
|
|
|
|
\item{\LaTeX}
|
|
|
|
\item{Git}
|
|
|
|
\item{LEMP Stack}
|
|
|
|
\item{APIs REST}
|
|
|
|
\item{SQL}
|
|
|
|
\item{NixOS}
|
|
|
|
\end{itemize}
|
2019-07-01 20:24:57 +02:00
|
|
|
|
2019-07-11 07:23:52 +02:00
|
|
|
% COURSES
|
|
|
|
%
|
2021-01-10 11:35:29 +01:00
|
|
|
\ifthenelse{\equal{es}{en}}
|
2019-12-06 13:55:46 +01:00
|
|
|
{\section{courses}}
|
|
|
|
{\section{cursos}}%
|
2019-07-11 07:23:52 +02:00
|
|
|
\hlight
|
2021-01-10 11:35:29 +01:00
|
|
|
\emphasized{Fundamentos de Robótica} \\
|
|
|
|
\lightfont{\textbf{Adams Formación}} \\
|
|
|
|
\emphasized{Programación con Python} \\
|
|
|
|
\lightfont{\textbf{Universidad de Granada}} \\
|
|
|
|
\emphasized{Programación y distribución de aplicaciones móviles
|
|
|
|
para dispositivos Android e IOS} \\
|
|
|
|
\lightfont{\textbf{Universidad de Granada}} \\
|
|
|
|
\emphasized{Arduino} \\
|
|
|
|
\lightfont{\textbf{Universidad de Granada}} \\
|
|
|
|
\end{minipage}%
|
2019-07-01 19:40:34 +02:00
|
|
|
%
|
|
|
|
%---------- RIGHT SIDE ----------
|
|
|
|
\newlength{\hwideright}
|
|
|
|
\newlength{\buffer}
|
|
|
|
\setlength{\buffer}{4pt plus 1pt minus 1pt}
|
|
|
|
%
|
|
|
|
\begin{minipage}[t]{0.64\textwidth}
|
2020-05-21 02:48:18 +02:00
|
|
|
% EXPERIENCE
|
2021-01-10 11:35:29 +01:00
|
|
|
\ifthenelse{\equal{es}{en}}
|
2020-05-21 02:48:18 +02:00
|
|
|
{\section{experience}}
|
|
|
|
{\section{experiencia laboral}}%
|
|
|
|
\setlength{\hwide}{\dimexpr.5\hsize-4\tabcolsep}
|
|
|
|
\setlength{\hwideright}{\dimexpr\hwide+5\tabcolsep}
|
|
|
|
%
|
|
|
|
\begin{tabular}{@{}p{\hwide}p{\hwideright}}
|
|
|
|
\arrayrulecolor{light-gray}
|
2021-01-10 11:35:29 +01:00
|
|
|
\parbox[t][][t]{\hwide}{%
|
2020-05-21 02:48:18 +02:00
|
|
|
\raggedright
|
2021-01-10 11:35:29 +01:00
|
|
|
\company{JITKey}\\
|
2020-05-21 02:48:18 +02:00
|
|
|
\vspace{\buffer}
|
|
|
|
\lightfont{%
|
2021-01-10 11:35:29 +01:00
|
|
|
Febrero 2020 \textendash{} Marzo 2020\\
|
|
|
|
\vspace{\buffer}}
|
|
|
|
} & %
|
2020-05-21 02:48:18 +02:00
|
|
|
\parbox[t][][t]{\hwideright}{%
|
|
|
|
\raggedright
|
2021-01-10 11:35:29 +01:00
|
|
|
\position{Prácticas}\\
|
2020-05-21 02:48:18 +02:00
|
|
|
\vspace{\buffer}
|
2021-01-10 11:35:29 +01:00
|
|
|
\lightsmall{Responsable de Soporte en una startup española.
|
|
|
|
Suspendidas debido al COVID-19}
|
2020-05-21 02:48:18 +02:00
|
|
|
}\\
|
2021-01-10 11:35:29 +01:00
|
|
|
\end{tabular}
|
2019-07-02 00:35:54 +02:00
|
|
|
% EDUCATION
|
2021-01-10 11:35:29 +01:00
|
|
|
\ifthenelse{\equal{es}{en}}
|
2019-12-06 13:55:46 +01:00
|
|
|
{\section{education}}
|
|
|
|
{\section{formación académica}}%
|
2019-07-02 00:35:54 +02:00
|
|
|
\setlength{\hwide}{\dimexpr.5\hsize-4\tabcolsep}
|
|
|
|
\setlength{\hwideright}{\dimexpr\hwide+5\tabcolsep}
|
|
|
|
%
|
|
|
|
\setlength{\parskip}{1mm}
|
2020-05-21 02:48:18 +02:00
|
|
|
\vspace{-0.5em}
|
2019-07-08 16:35:32 +02:00
|
|
|
\begin{tabular}{@{}p{\hwide}p{\rightwide}}
|
2021-01-10 11:35:29 +01:00
|
|
|
\parbox[t][][t]{\hwide}{%
|
|
|
|
\lightfont{2017 \textendash{} presente} \\
|
|
|
|
\smallskip
|
|
|
|
\emphasized{Grado} \\
|
|
|
|
\smallskip
|
|
|
|
\emphasized{Ingeniería Informática} \\
|
|
|
|
} & %
|
|
|
|
\parbox[t][][t]{\rightwide}{%
|
|
|
|
\lightfont{\textbf{Universidad de Granada} \\
|
|
|
|
\emph{Ceuta}} \\ %
|
|
|
|
\medskip %
|
|
|
|
} \\
|
|
|
|
\parbox[t][][t]{\hwide}{%
|
|
|
|
\lightfont{2015 \textendash{} 2017} \\
|
2019-07-08 16:35:32 +02:00
|
|
|
\smallskip
|
2021-01-10 11:35:29 +01:00
|
|
|
\emphasized{Grado} \\
|
2019-07-08 16:35:32 +02:00
|
|
|
\smallskip
|
2021-01-10 11:35:29 +01:00
|
|
|
\emphasized{Medicina} \\
|
2019-07-08 16:35:32 +02:00
|
|
|
} & %
|
|
|
|
\parbox[t][][t]{\rightwide}{%
|
2021-01-10 11:35:29 +01:00
|
|
|
\lightfont{\textbf{Universidad de Sevilla} \\
|
|
|
|
\emph{Sevilla}} \\ %
|
2020-05-21 02:48:18 +02:00
|
|
|
\medskip %
|
2019-07-08 16:35:32 +02:00
|
|
|
} \\
|
2021-01-10 11:35:29 +01:00
|
|
|
\parbox[t][][t]{\hwide}{%
|
|
|
|
\lightfont{2013 \textendash{} 2015} \\
|
|
|
|
\smallskip
|
|
|
|
\emphasized{Grado} \\
|
|
|
|
\smallskip
|
|
|
|
\emphasized{Medicina} \\
|
|
|
|
} & %
|
|
|
|
\parbox[t][][t]{\rightwide}{%
|
|
|
|
\lightfont{\textbf{Université Paris-Sud} \\
|
|
|
|
\emph{Châtenay-Malabry}} \\ %
|
|
|
|
\medskip %
|
|
|
|
} \\
|
|
|
|
\end{tabular}
|
2020-05-21 02:48:18 +02:00
|
|
|
\vspace{-0.8em}
|
2019-07-02 00:35:54 +02:00
|
|
|
%
|
2019-07-01 21:16:38 +02:00
|
|
|
|
2019-07-11 07:23:52 +02:00
|
|
|
% LANGUAGES
|
2021-01-10 11:35:29 +01:00
|
|
|
\ifthenelse{\equal{es}{en}}
|
2019-12-06 13:55:46 +01:00
|
|
|
{\section{languages}}
|
|
|
|
{\section{idiomas}}%
|
|
|
|
%
|
2019-07-11 07:23:52 +02:00
|
|
|
\setlength{\parskip}{1mm}
|
|
|
|
\setlength{\hwide}{\dimexpr.5\hsize-4\tabcolsep}
|
|
|
|
\setlength{\hwideright}{\dimexpr\hwide+5\tabcolsep}
|
2019-07-08 17:52:13 +02:00
|
|
|
|
2019-07-11 07:23:52 +02:00
|
|
|
\begin{tabular}{@{}p{\hwide}p{\rightwide}}
|
2021-01-10 11:35:29 +01:00
|
|
|
\parbox[t][][t]{\hwide}{%
|
|
|
|
\emphasized{Inglés}
|
|
|
|
\medskip
|
|
|
|
} & %
|
|
|
|
\parbox[t][][t]{\rightwide}{%
|
|
|
|
\lightbf{Fluido}
|
|
|
|
\medskip
|
|
|
|
} \\ %
|
|
|
|
\parbox[t][][t]{\hwide}{%
|
|
|
|
\emphasized{Español}
|
|
|
|
\medskip
|
|
|
|
} & %
|
|
|
|
\parbox[t][][t]{\rightwide}{%
|
|
|
|
\lightbf{Nativo}
|
|
|
|
\medskip
|
|
|
|
} \\ %
|
|
|
|
\parbox[t][][t]{\hwide}{%
|
|
|
|
\emphasized{Francés}
|
|
|
|
\medskip
|
|
|
|
} & %
|
|
|
|
\parbox[t][][t]{\rightwide}{%
|
|
|
|
\lightbf{Nativo}
|
|
|
|
\medskip
|
|
|
|
} \\ %
|
|
|
|
\parbox[t][][t]{\hwide}{%
|
|
|
|
\emphasized{Darija (Dialecto marroquí)}
|
2019-07-11 07:23:52 +02:00
|
|
|
\medskip
|
|
|
|
} & %
|
|
|
|
\parbox[t][][t]{\rightwide}{%
|
2021-01-10 11:35:29 +01:00
|
|
|
\lightbf{Nativo}
|
2019-07-11 07:23:52 +02:00
|
|
|
\medskip
|
|
|
|
} \\ %
|
2021-01-10 11:35:29 +01:00
|
|
|
\end{tabular}
|
2019-07-01 19:40:34 +02:00
|
|
|
%
|
2019-07-01 20:24:08 +02:00
|
|
|
%\section{publications}
|
|
|
|
%\vspace{-0.5em}
|
|
|
|
%\begingroup
|
|
|
|
%\renewcommand{\section}[2]{}%
|
|
|
|
%\pubstyle{
|
|
|
|
% \bibliography{pubs}
|
|
|
|
% \bibliographystyle{cvbib}
|
|
|
|
%}
|
|
|
|
%\endgroup
|
2019-07-01 19:40:34 +02:00
|
|
|
\end{minipage}
|
|
|
|
% ==========================================================
|
|
|
|
%-------------------- END OF DOCUMENT ----------------------
|
2019-06-27 20:14:41 +02:00
|
|
|
\end{document}
|