CV/cv.tex

75 lines
1.3 KiB
TeX
Raw Normal View History

2022-04-16 16:05:57 +01:00
%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]
2022-04-16 16:05:57 +01:00
% Set title
\title{Oscar Pocock - CV}
\begin{document}
\name{Oscar Pocock}
2024-01-07 13:56:37 +00:00
% \lastedit
2022-04-16 16:05:57 +01:00
2024-01-18 02:27:19 +00:00
%\clearance{SC Clearance}
2022-04-16 16:05:57 +01:00
% 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
2023-12-12 00:05:11 +00:00
\cvsect{Certifications}
2022-04-16 16:05:57 +01:00
\input{sections_\cvType/certifications.tex}
2024-01-18 02:27:19 +00:00
\newpage
2022-04-16 16:05:57 +01:00
% 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
2024-12-12 23:03:41 +00:00
\cvsect{References}
\input{sections_\cvVis/references.tex}
2022-04-16 16:05:57 +01:00
\end{document}