example CV
This commit is contained in:
24
README.md
24
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
|
||||||
|
```
|
||||||
|
|||||||
104
cv.tex
Normal file
104
cv.tex
Normal file
@@ -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}
|
||||||
Reference in New Issue
Block a user