CV/cv.tex
Oscar Blue 8ab22019cb
All checks were successful
/ build (push) Successful in 2m8s
2023-01-18
2024-01-18 02:27:19 +00:00

74 lines
1.3 KiB
TeX

%xelatex
% Document Class
\documentclass{cv}
% PACKAGES
% UTF-8 encoding
\usepackage[utf8]{inputenc}
\usepackage{xcolor}
\usepackage[a4paper, tmargin=0.5in, bmargin=0.75in, inner=0.5in, outer=0.5in]{geometry}
\usepackage{fontspec}
\usepackage[hidelinks]{hyperref}
% Set font
\setmainfont{Roboto}
% Variables
\newcommand \cvVis{public}
\newcommand \cvType{general}
% Load icon font
\newfontfamily{\icons}{cv}[Path=./fontello-cv/font/, Extension = .ttf]
% Set title
\title{Oscar Pocock - CV}
\begin{document}
\name{Oscar Pocock}
% \lastedit
%\clearance{SC Clearance}
% DETAILS
\input{sections_\cvVis/details.tex}
% PROFILE
\cvsect{Profile}
\input{sections_common/profile.tex}
% SKILLS
\cvsect{Skills}
\input{sections_\cvType/skills.tex}
% LANGUAGES
\cvsect{Languages}
\input{sections_\cvType/languages.tex}
% WORK EXPERIENCE
\cvsect{Work Experience}
\input{sections_\cvType/work-experience.tex}
% CERTIFICATIONS
\cvsect{Certifications}
\input{sections_\cvType/certifications.tex}
\newpage
% PROJECTS
\cvsect{Projects}
\input{sections_\cvType/projects.tex}
% EDUCATION
\cvsect{Education}
\input{sections_\cvType/education.tex}
% INTERESTS
\cvsect{Interests}
\input{sections_common/interests.tex}
% REFERENCES
%\cvsect{References}
%\input{sections_\cvVis/references.tex}
\end{document}