CV/cv.tex
Oscar Blue 68acb08962
All checks were successful
/ build (push) Successful in 2m13s
Spelling mistakes
2023-12-12 00:05:11 +00:00

70 lines
1.2 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
% 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}
% 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}