-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresume_full_cv.tex
117 lines (92 loc) · 4.16 KB
/
resume_full_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
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Awesome Resume/CV
% XeLaTeX Template
% Version 1.2 (27/3/2017)
%
% This template has been downloaded from:
% http://www.LaTeXTemplates.com
%
% Original author:
% Claud D. Park (posquit0.bj@gmail.com) with modifications by
% Vel (vel@latextemplates.com)
%
% License:
% CC BY-NC-SA 3.0 (http://creativecommons.org/licenses/by-nc-sa/3.0/)
%
% Important note:
% This template must be compiled with XeLaTeX, the below lines will ensure this
%!TEX TS-program = xelatex
%!TEX encoding = UTF-8 Unicode
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%----------------------------------------------------------------------------------------
% PACKAGES AND OTHER DOCUMENT CONFIGURATIONS
%----------------------------------------------------------------------------------------
\documentclass[11pt, a4paper]{awesome-cv} % A4 paper size by default, use 'letterpaper' for US letter
\geometry{left=1cm, top=1.5cm, right=1cm, bottom=1.5cm, footskip=.25cm} % Configure page margins with geometry
\fontdir[fonts/] % Specify the location of the included fonts
% Color for highlights
\colorlet{awesome}{awesome-red} % Default colors include: awesome-emerald, awesome-skyblue, awesome-red, awesome-pink, awesome-orange, awesome-nephritis, awesome-concrete, awesome-darknight
%\definecolor{awesome}{HTML}{CA63A8} % Uncomment if you would like to specify your own color
% Colors for text - uncomment and modify
%\definecolor{darktext}{HTML}{414141}
%\definecolor{text}{HTML}{414141}
%\definecolor{graytext}{HTML}{414141}
%\definecolor{lighttext}{HTML}{414141}
\renewcommand{\acvHeaderSocialSep}{\quad\textbar\quad} % If you would like to change the social information separator from a pipe (|) to something else
%-------------------------------------------------------------------------------
% Macros for Toggling Sections
%-------------------------------------------------------------------------------
\usepackage{environ}
\usepackage{etoolbox}
% the toggle is initially false
\newtoggle{fullResume}
% Comment here to display short resume conents
\toggletrue{fullResume}
%\togglefalse{fullResume}
\NewEnviron{displaySection}{%
\iftoggle{fullResume}{\BODY}{}%
}
%----------------------------------------------------------------------------------------
% PERSONAL INFORMATION
% Comment any of the lines below if they are not required
%----------------------------------------------------------------------------------------
\name{Nicholas B.}{Anderson}
%\address{}
%\mobile{}
\email{nanderson7@gmail.com}
\homepage{brewfault.io}
\github{muffins}
\linkedin{nanderson7}
%\skype{skypeid}
%\stackoverflow{SOid}{SOname}
%\twitter{@poppyseedplehzr}
%\reddit{reddit account}
%\xing{xing name}
%\extrainfo{test} % Other text you want to include on this line
\position{Security Engineer{\enskip\cdotp\enskip}Host Based Security Detection and Response{\enskip\cdotp\enskip}Malware Reverse Engineering} % Your expertise/fields
%\quote{``Make the change that you want to see in the world."} % A quote or statement
\makecvfooter{\today}{Nick Anderson~~~·~~~Résumé}{\thepage} % Specify the letter footer with 3 arguments: (<left>, <center>, <right>), leave any of these blank if they are not needed
%----------------------------------------------------------------------------------------
\begin{document}
\makecvheader % Print the header
%----------------------------------------------------------------------------------------
% CV/RESUME CONTENT
% Each section is imported separately, open each file in turn to modify content
%----------------------------------------------------------------------------------------
% The following is the short list
\input{cv-sections/experience.tex}
\input{cv-sections/education.tex}
\input{cv-sections/presentations.tex}
\input{cv-sections/publications.tex}
\input{cv-sections/skills.tex}
% Uncomment the toggle above for the exhaustive content
%\newpage
\begin{displaySection}
\input{cv-sections/honors.tex}
\input{cv-sections/associations.tex}
\input{cv-sections/extracurricular.tex}
\end{displaySection}
%\newpage % Force a new page for looks, as needed.
%----------------------------------------------------------------------------------------
\end{document}