Compare commits
3 Commits
awesome-cv
...
49b33fdbd4
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
49b33fdbd4 | ||
|
|
be2a389edf | ||
|
|
fbb9e400a1 |
15
.gitignore
vendored
15
.gitignore
vendored
@@ -1,14 +1 @@
|
||||
# Ignore all files
|
||||
*.*
|
||||
|
||||
# Whitelist
|
||||
!.gitignore
|
||||
!.vscode/
|
||||
!.vscode/**
|
||||
!awesome-cv.cls
|
||||
!*.tex
|
||||
!*.pdf
|
||||
!*.jpg
|
||||
!*.md
|
||||
!build/*.*
|
||||
|
||||
.DS_Store
|
||||
5
.vscode/settings.json
vendored
5
.vscode/settings.json
vendored
@@ -16,6 +16,5 @@
|
||||
}
|
||||
],
|
||||
"latex-workshop.latex.recipe.default": "Smart LaTeX Build",
|
||||
"latex-workshop.formatting.latex": "latexindent",
|
||||
"latex-workshop.latex.autoBuild.run": "onSave"
|
||||
}
|
||||
"latex-workshop.formatting.latex": "latexindent"
|
||||
}
|
||||
@@ -1,7 +1,6 @@
|
||||
# Curriculum-Vitae
|
||||
|
||||
This project contains my *curriculum vitae* writen in `TeX` using the class
|
||||
[`awesome-cv`](https://github.com/posquit0/Awesome-CV).
|
||||
This project contains my *curriculum vitae* writen in `TeX`.
|
||||
|
||||
## Install TeX
|
||||
|
||||
@@ -13,11 +12,5 @@ Go to https://tug.org/texlive/ and install the correct TeX for your operating sy
|
||||
|
||||
If you are using VS Code, I highly recommend to install [LaTeX Workshop](https://marketplace.visualstudio.com/items?itemName=James-Yu.latex-workshop).
|
||||
|
||||
## Other CV variants
|
||||
|
||||
- [Article](../article/)
|
||||
- [ModernCV](../moderncv)
|
||||
- [Pedro-CV](../pedro-cv/)
|
||||
|
||||
##
|
||||
Developed with ♥ by Pedro Pessoa Cabral
|
||||
|
||||
6
article/.gitignore
vendored
Normal file
6
article/.gitignore
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
# Ignore all auto-generated files, except for PDF
|
||||
|
||||
*.*
|
||||
!.gitignore
|
||||
!*.tex
|
||||
!*.pdf
|
||||
3588
article/Pedro_Cabral_CV_original.pdf
Normal file
3588
article/Pedro_Cabral_CV_original.pdf
Normal file
File diff suppressed because one or more lines are too long
75
article/Pedro_Cabral_CV_original.tex
Normal file
75
article/Pedro_Cabral_CV_original.tex
Normal file
@@ -0,0 +1,75 @@
|
||||
|
||||
\documentclass[11pt,a4paper]{article}
|
||||
\usepackage[margin=1in]{geometry}
|
||||
\usepackage{titlesec}
|
||||
\usepackage{enumitem}
|
||||
\usepackage{parskip}
|
||||
\usepackage{hyperref}
|
||||
\usepackage{fontspec}
|
||||
\usepackage{graphicx}
|
||||
|
||||
\setmainfont{Helvetica Neue}
|
||||
|
||||
\titleformat{\section}{\large\bfseries}{}{0em}{}[\titlerule]
|
||||
\titleformat{\subsection}{\normalsize\bfseries}{}{0em}{}
|
||||
|
||||
\pagestyle{empty}
|
||||
|
||||
\begin{document}
|
||||
|
||||
\begin{center}
|
||||
\begin{minipage}{0.75\textwidth}
|
||||
{\LARGE \textbf{Pedro Miguel Pessoa Cabral}}\\
|
||||
\vspace{0.5em}
|
||||
+49-(0)-17657-909188\\
|
||||
\href{mailto:pmpcabral@gmail.com}{pmpcabral@gmail.com}\\
|
||||
Rittmeisterkoppel 14-C, 22359 Hamburg
|
||||
\end{minipage}%
|
||||
\begin{minipage}{0.23\textwidth}
|
||||
\includegraphics[width=\linewidth]{../me_m_8x8_4x.jpg}
|
||||
\end{minipage}
|
||||
\end{center}
|
||||
|
||||
|
||||
\vspace{1em}
|
||||
|
||||
\section*{Profile}
|
||||
\begin{tabular}{rl}
|
||||
Date and Place of Birth: & January 17\textsuperscript{th}, 1988, Setúbal, Portugal \\
|
||||
Nationality: & Portuguese \\
|
||||
Languages: & Portuguese (First language), German (Fluent), English (Fluent),\\
|
||||
& Spanish (Good), French (Basic)
|
||||
\end{tabular}
|
||||
|
||||
\vspace{1em}
|
||||
|
||||
\section*{Experience}
|
||||
\noindent
|
||||
\textbf{Software Developer, HR4YOU AG} \hfill Großefehn, Germany \\
|
||||
\textit{Feb 2017 – Present} \\
|
||||
Technologies: PHP, JavaScript, SQL
|
||||
|
||||
\vspace{0.5em}
|
||||
\noindent
|
||||
\textbf{Support \& Operations, SAFIRA/KPMG} \hfill Carnaxide, Portugal \\
|
||||
\textit{Sep 2014 – Apr 2016} \\
|
||||
Worked with IBM Business Process Management and Forefront Identity Manager (FIM)
|
||||
|
||||
\vspace{0.5em}
|
||||
\noindent
|
||||
\textbf{Software Developer, SAFIRA} \hfill Carnaxide, Portugal \\
|
||||
\textit{Apr 2013 – Sep 2014} \\
|
||||
Worked with IBM Business Process Management, IBM WebSphere Message Broker, SQL
|
||||
|
||||
\vspace{1em}
|
||||
|
||||
\section*{Education}
|
||||
\textbf{Faculdade de Ciências e Tecnologia, Universidade Nova de Lisboa} \hfill Caparica, Portugal \\
|
||||
Bachelor of Science \hfill 2013
|
||||
|
||||
\vspace{1em}
|
||||
|
||||
\section*{Skills}
|
||||
PHP, OOP, JavaScript, jQuery, CSS, SQL, SOAP, REST, PL/SQL, XML
|
||||
|
||||
\end{document}
|
||||
7
awesome-cv/.gitignore
vendored
Normal file
7
awesome-cv/.gitignore
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
# Ignore all auto-generated files, except for PDF
|
||||
|
||||
*.*
|
||||
!.gitignore
|
||||
!awesome-cv.cls
|
||||
!*.tex
|
||||
!*.pdf
|
||||
@@ -3436,67 +3436,76 @@ endobj
|
||||
43 0 obj
|
||||
<</Filter/FlateDecode/Length 293>>
|
||||
stream
|
||||
xÚ]ÑQkƒ0 | ||||