2015-12-08 01:07:13 +00:00
|
|
|
%!TEX TS-program = xelatex
|
|
|
|
%!TEX encoding = UTF-8 Unicode
|
|
|
|
% Copyright 2015 Claud D. Park <posquit0.bj@gmail.com>
|
|
|
|
% http://www.posquit0.com
|
|
|
|
%
|
|
|
|
|
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
% Configuration
|
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
%%% Themes: Awesome-CV
|
|
|
|
\documentclass[11pt, a4paper]{awesome-cv}
|
|
|
|
|
|
|
|
%%% Override a directory location for fonts(default: 'fonts/')
|
|
|
|
\fontdir[fonts/]
|
|
|
|
|
|
|
|
%%% Configure a directory location for sections
|
|
|
|
\newcommand*{\sectiondir}{resume/}
|
|
|
|
|
|
|
|
%%% Override color
|
|
|
|
% Awesome Colors: awesome-emerald, awesome-skyblue, awesome-red, awesome-pink, awesome-orange
|
|
|
|
% awesome-nephritis, awesome-concrete, awesome-darknight
|
|
|
|
%% Color for highlight
|
|
|
|
% Define your custom color if you don't like awesome colors
|
|
|
|
\colorlet{awesome}{awesome-red}
|
|
|
|
%\definecolor{awesome}{HTML}{CA63A8}
|
|
|
|
%% Colors for text
|
|
|
|
%\definecolor{darktext}{HTML}{414141}
|
|
|
|
%\definecolor{text}{HTML}{414141}
|
|
|
|
%\definecolor{graytext}{HTML}{414141}
|
|
|
|
%\definecolor{lighttext}{HTML}{414141}
|
|
|
|
|
|
|
|
%%% Override a separator for social informations in header(default: ' | ')
|
|
|
|
%\headersocialsep[\quad\textbar\quad]
|
|
|
|
|
|
|
|
|
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
% 3rd party packages
|
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
%%% Needed to divide into several files
|
|
|
|
\usepackage{import}
|
|
|
|
|
|
|
|
|
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
% Personal Data
|
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
%%% Essentials
|
2015-12-08 02:35:27 +00:00
|
|
|
\name{[[ _.initial(r.name.split(' ')).join(' ') ]] }{[[ _.last(r.name.split(' ')) ]]}
|
|
|
|
\address{[[ r.location.address.replace(/\n/g, ', ') ]]}
|
|
|
|
\mobile{[[ r.contact.phone ]]}
|
2015-12-08 01:07:13 +00:00
|
|
|
%%% Social
|
2015-12-08 02:35:27 +00:00
|
|
|
\email{[[ r.contact.email ]]}
|
|
|
|
\homepage{[[ r.contact.website ]]}
|
|
|
|
[~ if(r.hasProfile('github')) { ~]\github{[[ r.getProfile('github').user ]]}[~ } ~]
|
|
|
|
[~ if(r.hasProfile('linkedin')) { ~]\linkedin{[[ r.getProfile('linkedin').user ]]}[~ } ~]
|
2015-12-08 01:07:13 +00:00
|
|
|
%%% Optionals
|
2015-12-08 02:35:27 +00:00
|
|
|
\position{[[ r.info.characterClass ]]{\enskip\cdotp\enskip}[[ r.info.label ]]}
|
|
|
|
[~ if( r.info.quote ) { ~]\quote{``[[ r.info.quote ]]"}[~ } ~]
|
2015-12-08 01:07:13 +00:00
|
|
|
|
|
|
|
|
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
% Content
|
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
%%% Make a footer for CV with three arguments(<left>, <center>, <right>)
|
|
|
|
\makecvfooter
|
|
|
|
{\today}
|
2015-12-08 02:35:27 +00:00
|
|
|
{[[ r.name ]]~~~·~~~Résumé}
|
2015-12-08 01:07:13 +00:00
|
|
|
{\thepage}
|
|
|
|
|
|
|
|
\begin{document}
|
|
|
|
%%% Make a header for CV with personal data
|
|
|
|
\makecvheader
|
|
|
|
|
|
|
|
%%% Import contents
|
|
|
|
\import{\sectiondir}{education.tex}
|
|
|
|
\import{\sectiondir}{experience.tex}
|
|
|
|
\import{\sectiondir}{extracurricular.tex}
|
|
|
|
\import{\sectiondir}{honors.tex}
|
|
|
|
\import{\sectiondir}{presentation.tex}
|
|
|
|
\import{\sectiondir}{writing.tex}
|
|
|
|
\import{\sectiondir}{committees.tex}
|
|
|
|
|
|
|
|
\end{document}
|