You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

206 lines
6.5 KiB

%!TEX TS-program = xelatex
%!TEX encoding = UTF-8 Unicode
% Awesome CV LaTeX Template for CV/Resume
%
% This template has been downloaded from:
% https://github.com/posquit0/Awesome-CV
%
% Author:
% Claud D. Park <posquit0.bj@gmail.com>
% http://www.posquit0.com
%
% Template license:
% CC BY-SA 4.0 (https://creativecommons.org/licenses/by-sa/4.0/)
%
% \usepackage{amssymb}
\renewcommand{\labelenumi}{A}
\renewcommand{\labelenumii}{A}
\renewcommand{\labelitemi}{B}
\renewcommand{\labelitemii}{B}
\renewcommand{\labelitemiii}{B}
\renewcommand{\labelcvitemi}{B}
\renewcommand{\labelenumi}{A}
%-------------------------------------------------------------------------------
% CONFIGURATIONS
%-------------------------------------------------------------------------------
% A4 paper size by default, use 'letterpaper' for US letter
\documentclass[11pt, a4paper]{awesome-cv}
% Configure page margins with geometry
\geometry{left=1.4cm, top=.8cm, right=1.4cm, bottom=1.8cm, footskip=.5cm}
% Color for highlights
% Awesome Colors: awesome-emerald, awesome-skyblue, awesome-red, awesome-pink, awesome-orange
% awesome-nephritis, awesome-concrete, awesome-darknight
\colorlet{awesome}{awesome-red}
% Uncomment if you would like to specify your own color
% \definecolor{awesome}{HTML}{CA63A8}
% Colors for text
% Uncomment if you would like to specify your own color
% \definecolor{darktext}{HTML}{414141}
% \definecolor{text}{HTML}{333333}
% \definecolor{graytext}{HTML}{5D5D5D}
% \definecolor{lighttext}{HTML}{999999}
% \definecolor{sectiondivider}{HTML}{5D5D5D}
% Set false if you don't want to highlight section with awesome color
\setbool{acvSectionColorHighlight}{true}
% If you would like to change the social information separator from a pipe (|) to something else
\renewcommand{\acvHeaderSocialSep}{\quad\textbar\quad}
%-------------------------------------------------------------------------------
% PERSONAL INFORMATION
% Comment any of the lines below if they are not required
%-------------------------------------------------------------------------------
% Available options: circle|rectangle,edge/noedge,left/right
% \photo[rectangle,edge,right]{./examples/profile}
\name{<%= @user.name.tex_safe %>}{}
\position{<%= @user.title.tex_safe %>}
\address{<%= @user.address.tex_safe %>}
\mobile{<%= @user.phone.tex_safe %>}
\email{<%= @user.email.tex_safe %>}
%\dateofbirth{January 1st, 1970}
\homepage{<%= @user.other_page_url.tex_safe %>}
\github{<%= @user.github.tex_safe %>}
\linkedin{<%= @user.linkedin.tex_safe %>}
% \gitlab{gitlab-id}
% \stackoverflow{SO-id}{SO-name}
% \twitter{@twit}
% \skype{skype-id}
% \reddit{reddit-id}
% \medium{madium-id}
% \kaggle{kaggle-id}
% \googlescholar{googlescholar-id}{name-to-display}
%% \firstname and \lastname will be used
% \googlescholar{googlescholar-id}{}
% \extrainfo{extra information}
% \quote{``Be the change that you want to see in the world."}
%-------------------------------------------------------------------------------
\begin{document}
% Print the header with above personal information
% Give optional argument to change alignment(C: center, L: left, R: right)
\makecvheader[C]
% Print the footer with 3 arguments(<left>, <center>, <right>)
% Leave any of these blank if they are not needed
\makecvfooter
{\today}
{<%= @user.name.tex_safe %>~~~·~~~Resume}
{\thepage}
%-------------------------------------------------------------------------------
% SECTION TITLE
%-------------------------------------------------------------------------------
\cvsection{Summary}
%-------------------------------------------------------------------------------
% CONTENT
%-------------------------------------------------------------------------------
\begin{cvparagraph}
%---------------------------------------------------------
<%= @user.objective.tex_safe %>
\end{cvparagraph}
%-------------------------------------------------------------------------------
% SECTION TITLE
%-------------------------------------------------------------------------------
\cvsection{Skills}
%-------------------------------------------------------------------------------
% CONTENT
%-------------------------------------------------------------------------------
\begin{cvskills}
%---------------------------------------------------------
<% @user.skills.active.each do |s| %>
\cvskill
{<%= s.title.tex_safe %>} % Category
{<%= s.detail.tex_safe %>} % Skills
<% end %>
\end{cvskills}
%-------------------------------------------------------------------------------
% SECTION TITLE
%-------------------------------------------------------------------------------
\cvsection{Work Experience}
%-------------------------------------------------------------------------------
% CONTENT
%-------------------------------------------------------------------------------
\begin{cventries}
%---------------------------------------------------------
<% @user.work_experiences.active.each do |w| %>
\cventry
{<%= w.title.tex_safe %>} % Job title
{<%= w.employer.tex_safe %>} % Organization
{} % Location
{<%= w.period.tex_safe %>} % Date(s)
{
\begin{cvitems} % Description(s) of tasks/responsibilities
<% w.items_csv&.split(";")&.each do |i| %>
\item {<%= i.tex_safe %>}
<% end %>
\end{cvitems}
}
<% end %>
%---------------------------------------------------------
\end{cventries}
%-------------------------------------------------------------------------------
% SECTION TITLE
%-------------------------------------------------------------------------------
\cvsection{Education}
%-------------------------------------------------------------------------------
% CONTENT
%-------------------------------------------------------------------------------
\begin{cventries}
%---------------------------------------------------------
<% @user.education_entries.active.each do |e| %>
\cventry
{<%= e.institution.tex_safe %>} % Institution
{<%= e.title.tex_safe %>} % Degree
{<%= e.location.tex_safe %>} % Location
{<%= e.period.tex_safe %>} % Date(s)
<%
education_details_arr = e.items_csv&.split(";")
%>
<% if education_details_arr.empty? %>
{
\begin{nobulletcvitems}
\end{nobulletcvitems}
}
<% else %>
{
\begin{cvitems}
<% education_details_arr.each do |item| %>
\item {<%= item.tex_safe %>}
<% end %>
\end{cvitems}
}
<% end %>
<% end %>
%---------------------------------------------------------
\end{cventries}
%-------------------------------------------------------------------------------
\end{document}