From 56b42444fbb18499aa4ffb05cefddbe6007b2dc1 Mon Sep 17 00:00:00 2001 From: Sam Hadow Date: Wed, 29 Oct 2025 17:44:46 +0100 Subject: [PATCH] example CV --- README.md | 24 +++++++++++++ cv.tex | 104 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 128 insertions(+) create mode 100644 cv.tex diff --git a/README.md b/README.md index e69de29..9955d1a 100644 --- a/README.md +++ b/README.md @@ -0,0 +1,24 @@ +# 2colscv + +This repository contains a two-column CV template in LaTeX. An example CV (`cv.tex`) is included. + +## Usage + +1. Clone the repository: + +```bash +git clone https://git.hadow.fr/sam.hadow/2colscv +cd 2colscv +``` + +2. Build the example CV: +``` +make +``` +The PDF will appear in the build/ directory. + +3. Clean build files: + +``` +make clean +``` diff --git a/cv.tex b/cv.tex new file mode 100644 index 0000000..2c5f433 --- /dev/null +++ b/cv.tex @@ -0,0 +1,104 @@ +\documentclass[]{2colscv} + +\usepackage{enumitem} + +\begin{document} + +%%%%%%%%%%%%%%%%% +%%PROFILE SIDE BAR%% +%%%%%%%%%%%%%%%%% + +\profilepic{photo-placeholder.jpeg} +\cvname{John Doe} +\cvjobtitle{} +\cvdate{} +\cvaddress{123 Example Street, 00000 City} +\cvnumberphone{+00 (0)0 000 00 00} +\cvmail{john.doe@example.com} +\cvsite{https://example.com} +\cvgit{https://git.example.com/johndoe} +\cvctf{https://www.root-me.org/JohnDoe} + +\aboutme{ +Computer science enthusiast and open-source contributor. +} + +\langskills{ + English/C2/native, + French/C1, + Spanish/B2, + German/B1 +} + +\makeprofile +%%%%%%%%%%%%%%%%%%%% +%%END PROFILE SIDE BAR%% +%%%%%%%%%%%%%%%%%%%% + +%%%%%%%%%%%%%%%%%%%% +%%%%%%%%BODY%%%%%%%% +%%%%%%%%%%%%%%%%%%%% + +\section{Experience} +\begin{experience} + \experienceitem + {2024} + {ExampleTech Corp} + {internship (3 months)} + {Software developer intern, worked on web applications and APIs.} + \experienceitem + {2022} + {Tech Solutions Ltd} + {part-time contract (2 months)} + {Assisted in system administration and cloud infrastructure management.} +\end{experience} + +\section{Education} +\begin{experience} + \experienceitem + {2025-ongoing} + {Master’s Degree, Computer Science} + {Example University} + {First year passed with distinction.} + \experienceitem + {2022-2025} + {Bachelor’s Degree, Computer Science} + {Example University} + {Graduated with honours, GPA: 3.8/4.0} + \experienceitem + {2018-2022} + {High School Diploma} + {Example High School} + {Scientific major, graduated with distinction.\\ + Participated in robotics and coding clubs.} +\end{experience} + +\section{Skills} +\begin{enumerate}[itemsep=5pt, label={}] + \item \textbf{Programming Languages} + \begin{enumerate}[itemsep=-5pt, label={}] + \item Python, Java, C++ + \item JavaScript (React, Node.js) + \item SQL - MySQL, PostgreSQL + \end{enumerate} + \item \textbf{Tools/Software} + \begin{enumerate}[itemsep=-5pt, label={}] + \item Git, Docker, Kubernetes + \item Linux administration (Ubuntu, Debian) + \item LaTeX, VSCode + \item Cloud platforms: AWS, GCP + \end{enumerate} +\end{enumerate} + +\section{Interests} +\begin{enumerate}[itemsep=5pt, label={}] + \item \textbf{Open Source: } Contributing to small open-source projects and learning new technologies. + \item \textbf{Electronics: } Building DIY electronics projects with microcontrollers and sensors. + \item \textbf{3D Printing: } Designing and printing prototype parts using FDM printers. +\end{enumerate} + +%%%%%%%%%%%%%%%%%%%% +%%%%%ENDBODY%%%%%%%% +%%%%%%%%%%%%%%%%%%%% + +\end{document}