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.
165 lines
5.0 KiB
165 lines
5.0 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}
|
|
|
|
<%= render 'templates/awesome/colors_section' %>
|
|
|
|
% 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}
|
|
|
|
<%= render 'templates/awesome/personal_heading_section', user: @user %>
|
|
|
|
|
|
%-------------------------------------------------------------------------------
|
|
\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}
|
|
|