-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcv.tex
143 lines (135 loc) · 3.53 KB
/
cv.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
\documentclass{cv}
% Import packages
\usepackage[UKenglish]{babel} % Needed for lipsum.
\usepackage{lipsum} % For placeholder text.
\usepackage{hyperref}
% Set up document
\hypersetup{
colorlinks=false,
hidelinks,
pdfauthor=\theauthorname,
pdftitle={CV of \theauthorname}
}
% Begin document
\begin{document}
\setpersonalsummary{\lipsum[1][1-5]} % Define your personal summary to go below the header.
\cvheader
\begin{skills} % Refer to FontAwesome5 for more icons.
\faitem{\faCode} \lipsum[4][1]
\faitem{\faLinux} \lipsum[4][2]
\faitem{\faDatabase} \lipsum[4][3]
\faitem{\faChartBar} \lipsum[4][4]
\columnbreak
\faitem{\faGit*} \lipsum[4][5]
\faitem{\faProjectDiagram} \lipsum[4][6]
\faitem{\faCogs} \lipsum[4][7]
\faitem{\faCloud} \lipsum[4][8]
\end{skills}
\begin{career}
{\setlist{itemsep=\fill} % Ensures career items are as spaced out as possible.
\begin{careersection}{Projects}
\careeritem
{My First Interesting Project} % Item title.
{2023} % Item right detail.
{} % Item italicised below detail.
{ % Item description.
\begin{careeritemdetails}
\item \lipsum[5][1-2]
\item \lipsum[5][3-4]
\item \lipsum[5][4-5]
\end{careeritemdetails}
}
\careeritem
{My Second Interesting Project} % Item title.
{2022--Present} % Item right detail.
{} % Item italicised below detail.
{ % Item description.
\begin{careeritemdetails}
\item \lipsum[6][1-2]
\item \lipsum[6][3-4]
\item \lipsum[6][5-6]
\end{careeritemdetails}
}
\careeritem
{My Third Interesting Project} % Item title.
{2019--2020} % Item right detail.
{} % Item italicised below detail.
{ % Item description.
\begin{careeritemdetails}
\item \lipsum[7][1-2]
\item \lipsum[7][3-4]
\item \lipsum[7][5-6]
\end{careeritemdetails}
}
\careeritem
{My Fourth Interesting Project} % Item title.
{2018} % Item right detail.
{} % Item italicised below detail.
{ % Item description.
\begin{careeritemdetails}
\item \lipsum[8][1-2]
\item \lipsum[8][3-4]
\item \lipsum[8][5-6]
\end{careeritemdetails}
}
\end{careersection}
}
\columnbreak
\begin{careersection}{Experience}
\careeritem
{First Previous Job Title}
{2022--Present}
{Company, City of first job}
{
\begin{careeritemdetails}
\item \lipsum[9][1-2]
\item \lipsum[9][3-4]
\end{careeritemdetails}
}
\careeritem
{Second Previous Job Title}
{2019--2022}
{Company, City of second job}
{
\begin{careeritemdetails}
\item \lipsum[10][1-2]
\item \lipsum[10][3-4]
\end{careeritemdetails}
}
\end{careersection}
\vfill
\begin{careersection}{Education}
\careeritem
{Second Degree}
{2016--2018}
{University, City}
{
\begin{careeritemdetails}
\item \lipsum[11][1-2]
\end{careeritemdetails}
}
\careeritem
{First Degree}
{2013--2016}
{University, City}
{
\begin{careeritemdetails}
\item \lipsum[12][1-2]
\end{careeritemdetails}
}
\end{careersection}
\vfill
\begin{careersection}{Certifications}
\careeritem
{First Certification}
{2022}
{Vendor One}
{}
\careeritem
{Second Certification}
{2021}
{Vendor Two}
{}
\end{careersection}
\end{career}
\end{document}