|
@@ -0,0 +1,64 @@
|
|
1
|
+% Exemple de CV utilisant la classe moderncv
|
|
2
|
+% Style classic en bleu
|
|
3
|
+% Article complet : http://blog.madrzejewski.com/creer-cv-elegant-latex-moderncv/
|
|
4
|
+
|
|
5
|
+\documentclass[11pt,a4paper]{moderncv}
|
|
6
|
+\moderncvtheme[blue]{classic}
|
|
7
|
+
|
|
8
|
+\newcommand*{\cvent}[7][.25em]{%
|
|
9
|
+ \cvitem[#1]{#2}{%
|
|
10
|
+ {\bfseries#3}%
|
|
11
|
+% \ifthenelse{\equal{#4}{}}{}{, {\slshape#4}}% I changed this line (with comma) ...
|
|
12
|
+ \ifthenelse{\equal{#4}{}}{}{ {\slshape#4}}% ... into this one (without comma).
|
|
13
|
+ \ifthenelse{\equal{#5}{}}{}{ #5}%
|
|
14
|
+ \ifthenelse{\equal{#6}{}}{}{, #6}%
|
|
15
|
+ .\strut%
|
|
16
|
+ \ifx&%
|
|
17
|
+ \else{\newline{}\begin{minipage}[t]{\linewidth}\small#7\end{minipage}}\fi}}
|
|
18
|
+
|
|
19
|
+\usepackage[utf8]{inputenc}
|
|
20
|
+\usepackage[top=1.1cm, bottom=1.1cm, left=2cm, right=2cm]{geometry}
|
|
21
|
+% Largeur de la colonne pour les dates
|
|
22
|
+\setlength{\hintscolumnwidth}{2.5cm}
|
|
23
|
+
|
|
24
|
+\firstname{Robin}
|
|
25
|
+\familyname{Thoni}
|
|
26
|
+\title{Student at EPITA}
|
|
27
|
+%\address{3 Parvis Georges Marchais}{94800 Villejuif}
|
|
28
|
+\address{18 rue Saint Georges}{57580 Lesse}
|
|
29
|
+\email{thoni\_r@epita.fr}
|
|
30
|
+\mobile{06 23 06 39 59}
|
|
31
|
+\begin{document}
|
|
32
|
+\maketitle
|
|
33
|
+
|
|
34
|
+\section{Cursus}
|
|
35
|
+\cventry{2012 -- today}{Computer Science Student}{EPITA}{}{French Engineering School}{}
|
|
36
|
+\cventry{2014 -- today}{School's Laboratory}{3ie}{}{EPITA's Innovation Laboratory}{}
|
|
37
|
+
|
|
38
|
+\section{Experiences}
|
|
39
|
+\subsection{School}
|
|
40
|
+\cventry{2012 -- 2013}{Game}{A MMORPG written using SFML, with dedicated server}{}{}{}
|
|
41
|
+\cventry{2013 -- 2014}{IDEA}{An IDE for the EpiAlgo language used at EPITA}{}{}{}
|
|
42
|
+\cventry{2014}{42sh}{A POSIX shell done in teams of 4. I did the lexer, the parser, the AST, and the execution}{}{}{}
|
|
43
|
+\subsection{Personal}
|
|
44
|
+\cventry{2012 -- today}{Prologin Contest Organizer}{French national programming contest}{http://www.prologin.org/}{}{}
|
|
45
|
+\cventry{2013 -- today}{SMSServer}{An API and Android application for Internet SMS delivery service}{https://git.rthoni.com/ -> smsserver/*}{}{}
|
|
46
|
+\cventry{2013 -- today}{Camotion}{An API, a frontend, a backend and an Android application for remote CCTV}{https://git.rthoni.com/ -> camotion/*}{}{}
|
|
47
|
+\cventry{2013 -- 2014}{LibPTSocket}{A wrapper for TCP communication based on Qt}{https://git.rthoni.com/ -> libptsocket}{}{}
|
|
48
|
+\cventry{2014}{PDNS-slave}{A PowerDNS server replicator with override capabilities}{}{}{}
|
|
49
|
+
|
|
50
|
+\section{Skills}
|
|
51
|
+\subsection{Languages}
|
|
52
|
+\cvent{Fluent}{}{}{C, C++, Java, Shell, Javascript, C\#, SQL, HTML, CSS, Less, PHP}{}{}
|
|
53
|
+\subsection{Frameworks}
|
|
54
|
+\cvent{Fluent}{}{}{Qt, Node JS, C# WebApi, AngularJS, Bootstrap}{}{}
|
|
55
|
+\cvent{Occasional}{}{}{JQuery, Vaadin, Android SDK}{}{}
|
|
56
|
+
|
|
57
|
+\section{Miscellaneous}
|
|
58
|
+\subsection{Languages}
|
|
59
|
+\cvent{French}{}{}{Native}{}{}
|
|
60
|
+\cvent{English}{}{}{TOEIC 910}{}{}
|
|
61
|
+\subsection{Driving}
|
|
62
|
+\cvent{2012}{}{}{Driving Licence: Car and Van}{}{}
|
|
63
|
+
|
|
64
|
+\end{document}
|