Split skills into programming and technologies
This commit is contained in:
parent
4b34c802a1
commit
460aeac279
Binary file not shown.
|
@ -19,12 +19,15 @@ education:
|
||||||
institute: Universidad de Granada
|
institute: Universidad de Granada
|
||||||
city: Ceuta
|
city: Ceuta
|
||||||
|
|
||||||
skills:
|
programming:
|
||||||
- C++
|
- C++
|
||||||
- Java
|
- Java
|
||||||
- UNIX
|
|
||||||
|
technologies:
|
||||||
|
- UNIX (FreeBSD, Linux)
|
||||||
- \LaTeX
|
- \LaTeX
|
||||||
- Git
|
- Git
|
||||||
|
- LEMP/FEMP Web Stack
|
||||||
|
|
||||||
languages:
|
languages:
|
||||||
- language: Español
|
- language: Español
|
||||||
|
|
20
template.tex
20
template.tex
|
@ -59,6 +59,10 @@ $endif$
|
||||||
%--------------------------------
|
%--------------------------------
|
||||||
\usepackage{graphicx}
|
\usepackage{graphicx}
|
||||||
|
|
||||||
|
% SIDE BLOCK
|
||||||
|
%--------------------------------
|
||||||
|
|
||||||
|
|
||||||
% PDF SETUP
|
% PDF SETUP
|
||||||
%--------------------------------
|
%--------------------------------
|
||||||
\usepackage{hyperref}
|
\usepackage{hyperref}
|
||||||
|
@ -109,15 +113,23 @@ $if(intro)$
|
||||||
$intro$
|
$intro$
|
||||||
$endif$
|
$endif$
|
||||||
|
|
||||||
\section*{Aptitudes Informáticas}
|
\section*{Lenguajes de Programación}
|
||||||
$if(skills)$
|
$if(programming)$
|
||||||
\begin{itemize}
|
\begin{itemize}
|
||||||
$for(skills)$
|
$for(programming)$
|
||||||
\item $skills$
|
\item $programming$
|
||||||
$endfor$
|
$endfor$
|
||||||
\end{itemize}
|
\end{itemize}
|
||||||
$endif$
|
$endif$
|
||||||
|
|
||||||
|
\section*{Software}
|
||||||
|
$if(technologies)$
|
||||||
|
\begin{itemize}
|
||||||
|
$for(technologies)$
|
||||||
|
\item $technologies$
|
||||||
|
$endfor$
|
||||||
|
\end{itemize}
|
||||||
|
$endif$
|
||||||
% \vfill
|
% \vfill
|
||||||
|
|
||||||
\vspace{25pt}
|
\vspace{25pt}
|
||||||
|
|
Loading…
Reference in New Issue