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
|
|
|
|
%--------------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
% include Awesome-CV, with 11pt font and A4 paper size
|
|
|
|
\documentclass[11pt, a4paper]{awesome-cv}
|
|
|
|
|
2022-07-04 20:23:07 +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{presentableProjects}
|
|
|
|
\newbool{contributedProjects}
|
|
|
|
|
|
|
|
\setbool{presentableProjects}{true} % Cosmo, Laika, Openpunk-ansible
|
|
|
|
\setbool{contributedProjects}{true} % OpenFusion
|
|
|
|
|
|
|
|
%--------------------------------------------------------------------------------------------------
|
|
|
|
% PERSONAL INFO
|
|
|
|
% Some info has been redacted for privacy (address, mobile)
|
|
|
|
%--------------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
\name{Seth}{Stubbs}
|
|
|
|
\position{Systems Programmer}
|
|
|
|
\email{openpunk@proton.me}
|
|
|
|
\homepage{openpunk.com}
|
|
|
|
\github{CPunch}
|
|
|
|
|
|
|
|
%--------------------------------------------------------------------------------------------------
|
|
|
|
% CONTENT
|
|
|
|
% Included from the ./resume directory
|
|
|
|
%--------------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
\begin{document}
|
|
|
|
\makecvheader[C]
|
|
|
|
|
|
|
|
\input{resume/skills.tex}
|
|
|
|
\input{resume/projects.tex}
|
|
|
|
\end{document}
|