-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMichaelWadman_CV.tex
127 lines (107 loc) · 3.14 KB
/
MichaelWadman_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
\documentclass[]{article}
\usepackage[utf8]{inputenc}
\title{CV}
\author{Michael Wadman}
%\thanks{https://github.com/posquit0/Awesome-CV}
%%%%%%%%%%%%
% Packages %
%%%%%%%%%%%%
% Page Geometry (Size, Margins)
\usepackage{geometry}
\geometry{%
a4paper, % Sets paper sizing to A4. Can also be set to 'letterpaper'.
top=20mm, % Sets top margin
bottom=20mm, % Sets bottom margin
left=20mm, % Sets left margin
right=20mm, % Sets right margin
}
% Fancy Header (And Footer) Package
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhf{}
\renewcommand{\headrulewidth}{0pt}
\lfoot{\fontseries{t}\selectfont \today}
\cfoot{\fontseries{t}\selectfont \name{} {\scriptsize \\ Written in \LaTeX}}
\rfoot{\fontseries{t}\selectfont \thepage}
% Hyperlinks
\usepackage[bookmarks=false]{hyperref} % Disables bookmarks when opened in PDF viewer. Needs to be set in \usepackage for some reason
\hypersetup{%
colorlinks=false, % Do not color links
pdftitle={PDF Title}, % As shown when opened in PDF viewer
}
\urlstyle{same} % If unset, links are shown in monospace font
% Typeface/Font
\usepackage[T1]{fontenc}
\usepackage[sfdefault]{roboto}
% Font Awesome Icons
\usepackage{fontawesome}
% Colours
\usepackage[dvipsnames]{xcolor}
\definecolor{CustomRed}{HTML}{FF2800} % Defines a red color using a hex triplet
% Allows unnumbered lists
\usepackage{enumitem}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Variable/Command Definition %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Variables
\newcommand{\name}{Michael Wadman}
\newcommand{\position}{Solutions Architect/Senior Engineer}
%\newcommand{\phone}{123--456--7890}
\newcommand{\email}{michael} % Define email prefix
\edef\email{\email{}@} % Append "@" to \email
\edef\email{\email{}wadman.co.nz} % Append email suffix to \email
\newcommand{\website}{wadman.co.nz}
\newcommand{\github}{mwadman}
\newcommand{\gitlab}{mwadman}
% Commands
\newcommand{\sectionstyle}[1]{%
{\noindent \fontseries{m}\selectfont \LARGE #1} \hrulefill{} \vspace{2mm}
}
\newcommand{\iconandinfostyle}[3]{%
\ifdefined#1{}
\href{#2#1}{\hspace{0.05cm} #3 \hspace{0.05cm} {\fontseries{l}\selectfont \small #1 }} \hspace{0.2mm}
\fi
}
\newcommand{\bulletedlist}[1]{%
\fontseries{l}\selectfont \small
\begin{itemize}
\itemsep0em
#1
\end{itemize}
}
\newcommand{\nonbulletedlist}[1]{%
\fontseries{l}\selectfont \small
\begin{itemize}[label={}]
\itemsep0em
#1
\end{itemize}
}
\newcommand{\employerandlocation}[2]{%
{\textbf{#1} \hfill {\fontseries{l}\selectfont \textcolor{CustomRed}{\textit{#2}}}}\\
}
\newcommand{\positionanddates}[2]{%
\fontseries{l}\selectfont \textsc{#1} \hfill {\fontseries{t}\selectfont \small \textit{#2}}
}
\newcommand{\yearacheivementdescription}[4]{%
#1 \hspace{10mm} \textbf{#2} \hspace{0.2mm} #3 \textit{#4}
}
%%%%%%%%%%%%%%%%%%
% Begin Document %
%%%%%%%%%%%%%%%%%%
\begin{document}
% Page 1
\input{cv/1-Heading.tex}
\vspace{5mm}
\input{cv/2-Summary.tex}
\vspace{5mm}
\input{cv/3-Experience.tex}
\newpage
% Page 2
\input{cv/5-Skills.tex}
\vspace{5mm}
\input{cv/4-Qualifications.tex}
\vspace{5mm}
%\input{cv/6-Education.tex}
%\vspace{5mm}
\input{cv/7-References.tex}
\end{document}