resume/resume.tex

64 lines
2.1 KiB
TeX
Raw Normal View History

2022-07-04 19:06:32 +00:00
%!TEX TS-program = xelatex
%!TEX encoding = UTF-8 Unicode
%
% This document requires Awesome CV (/awesome-cv.cls) from this repository:
% https://github.com/posquit0/Awesome-CV
%
% This document also assumes a full installation of texlive (texlive-full from the Debian
% repository, texlive-most from the AUR)
%
% Author: CPunch (Seth Stubbs)
%%
%--------------------------------------------------------------------------------------------------
% CONFIGURATIONS
% Awesome-CV first, then content configuration
%--------------------------------------------------------------------------------------------------
2022-07-05 19:31:13 +00:00
% include Awesome-CV, with 12pt font and A4 paper size
\documentclass[12pt, a4paper]{awesome-cv}
2022-07-04 19:06:32 +00:00
% disable first 3 letter highlight
\setbool{acvSectionColorHighlight}{false}
2022-07-04 19:06:32 +00:00
% config geometry
\geometry{left=1.4cm, top=.8cm, right=1.4cm, bottom=1.8cm, footskip=.5cm}
% setup color
\colorlet{awesome}{awesome-orange}
% content configuration
\newbool{coolProjects}
\newbool{devopsProjects}
2022-07-04 19:06:32 +00:00
\newbool{contributedProjects}
\setbool{coolProjects}{true} % Cosmo, Laika, LuaDecompy
\setbool{devopsProjects}{true} % OpenPunk
2022-07-04 19:06:32 +00:00
\setbool{contributedProjects}{true} % OpenFusion
%--------------------------------------------------------------------------------------------------
% PERSONAL INFO
% Some info has been redacted for privacy (address, mobile)
2022-07-04 19:06:32 +00:00
%--------------------------------------------------------------------------------------------------
\name{Seth}{Stubbs}
2022-07-05 20:55:52 +00:00
\position{Systems Programmer | Reverse Engineer}
2022-07-04 19:06:32 +00:00
\email{openpunk@proton.me}
\homepage{openpunk.com}
\github{CPunch}
%--------------------------------------------------------------------------------------------------
% CONTENT
% Included from the ./resume directory
2022-07-04 19:06:32 +00:00
%--------------------------------------------------------------------------------------------------
\begin{document}
\makecvheader[C]
2022-08-17 21:20:31 +00:00
%\input{resume/summary.tex}
2022-07-04 19:06:32 +00:00
\input{resume/skills.tex}
2022-07-05 19:16:32 +00:00
\input{resume/experience.tex}
2022-07-04 19:06:32 +00:00
\input{resume/projects.tex}
2022-07-08 00:50:59 +00:00
\makecvfooter{}{References avaliable upon request}{}
2022-07-04 19:06:32 +00:00
\end{document}