diff options
author | Nicolas Dato <nicolas.dato@gmail.com> | 2024-08-28 23:08:39 -0300 |
---|---|---|
committer | Nicolas Dato <nicolas.dato@gmail.com> | 2024-08-28 23:08:39 -0300 |
commit | 2635bd91880b916d2e7661388d0753401e2c17f8 (patch) | |
tree | 8d76a8de61111ab14f343c2fa08756a304aea2ce /cv-template.tex | |
download | cv-2635bd91880b916d2e7661388d0753401e2c17f8.tar.gz cv-2635bd91880b916d2e7661388d0753401e2c17f8.tar.bz2 |
fist commit
Diffstat (limited to 'cv-template.tex')
-rw-r--r-- | cv-template.tex | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/cv-template.tex b/cv-template.tex new file mode 100644 index 0000000..035cea4 --- /dev/null +++ b/cv-template.tex @@ -0,0 +1,69 @@ +\input{solarized.tex} + +\usepackage{hyperref} +\hypersetup{colorlinks=true,linkcolor=sblue,urlcolor=sblue} +\pagestyle{empty} + +\pagecolor{sbase3} +\color{sbase01} + +\addtolength{\parskip}{1ex} + +\providecommand{\name}[1]{\providecommand{\cvname}{#1}} +\providecommand{\email}[1]{\providecommand{\cvemail}{\href{mailto:#1}{#1}}} +\providecommand{\address}[1]{\providecommand{\cvaddress}{#1}} +\providecommand{\professiontitle}[1]{\providecommand{\cvprofessiontitle}{#1}} +\providecommand{\linkedin}[1]{\providecommand{\cvlinkedin}{\href{https://www.linkedin.com/in/#1/}{#1}}} + +\newenvironment{alignedlist} +{\begin{tabular}{p{0.25\linewidth}@{ : }p{0.70\linewidth}} \raggedright{}} +{\end{tabular}} + +\newcommand{\alignedlistitem}[2]{\textbf{#1} & #2 \\} + +\newcommand{\personalinfo} +{\begin{center} + \begin{minipage}[c][]{0.48\textwidth} \raggedright{} + {\Huge \color{sred} \textbf{\cvname{}}} + \smallskip + {\huge \cvprofessiontitle{}} + \end{minipage} + \hfill + \begin{minipage}[c][]{0.48\textwidth} + \begin{alignedlist} + \alignedlistitem{Email}{\cvemail} + \alignedlistitem{Linkedin}{\cvlinkedin} + \alignedlistitem{Location}{\cvaddress} + \end{alignedlist} + \end{minipage} + \rule{\textwidth}{0.3em} +\end{center}} + +\providecommand{\timeitem}[5] +{\noindent\textbf{{\large #3 -- #4}\hrulefill\textit{ #1 -- #2}} +\par +#5 +\smallskip\par} + +\newcommand{\cvsection}[1]{{\noindent\hrulefill\par\noindent\textbf{\Large{#1}}}\medskip\par} + +\newenvironment{introduction} +{} +{\medskip} + +\newenvironment{experience} +{\cvsection{Professional Experience}} +{\medskip} + +\newenvironment{education} +{\cvsection{Education}} +{\medskip} + +\newenvironment{knowladge} +{\cvsection{Key Knowladge}} +{\medskip} + +\newenvironment{extra} +{\cvsection{Extras}} +{\medskip} + |