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.
126 lines
4.5 KiB
126 lines
4.5 KiB
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
% Stylish Curriculum Vitae
|
|
% LaTeX Template
|
|
% Version 1.1 (September 10, 2021)
|
|
%
|
|
% This template originates from:
|
|
% https://www.LaTeXTemplates.com
|
|
%
|
|
% Authors:
|
|
% Stefano (https://www.kindoblue.nl)
|
|
% Vel (vel@LaTeXTemplates.com)
|
|
%
|
|
% License:
|
|
% CC BY-NC-SA 4.0 (https://creativecommons.org/licenses/by-nc-sa/4.0/)
|
|
%
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
\documentclass[a4paper, oneside, final]{scrartcl} % Paper options using the scrartcl class
|
|
|
|
\usepackage{scrlayer-scrpage} % Provides headers and footers configuration
|
|
\usepackage{titlesec} % Allows creating custom \section's
|
|
\usepackage{marvosym} % Allows the use of symbols
|
|
\usepackage{tabularx,colortbl} % Advanced table configurations
|
|
\usepackage{microtype} % To enable letterspacing
|
|
\usepackage[a4paper, total={7.2in, 8in}]{geometry}
|
|
|
|
\titleformat{\section}{\large\scshape\raggedright}{}{0em}{}[\titlerule] % Section formatting
|
|
|
|
\pagestyle{scrheadings} % Print the headers and footers on all pages
|
|
|
|
\addtolength{\voffset}{-0.5in} % Adjust the vertical offset - less whitespace at the top of the page
|
|
\addtolength{\textheight}{3cm} % Adjust the text height - less whitespace at the bottom of the page
|
|
|
|
|
|
% \addtolength{\hoffset}{-0.5in} % Adjust the horizontal offset - less whitespace at the top of the page
|
|
|
|
\newcommand{\gray}{\rowcolor[gray]{.95}} % Custom highlighting for the work experience and education sections
|
|
|
|
%----------------------------------------------------------------------------------------
|
|
% FOOTER SECTION
|
|
%----------------------------------------------------------------------------------------
|
|
|
|
\renewcommand{\headfont}{\normalfont\rmfamily\scshape} % Font settings for footer
|
|
|
|
\cofoot{
|
|
\fontsize{12.5}{17}\selectfont % Letter spacing and font size
|
|
|
|
\textls[150]{<%= @user.address %> {\large\textperiodcentered} Jujuy {\large\textperiodcentered} Argentina }\\ % Your mailing address
|
|
{\Large\Letter} \textls[150]{<%= @user.email %> \ {\Large\Telefon} <%= @user.phone %>} % Your email address and phone number
|
|
}
|
|
|
|
%----------------------------------------------------------------------------------------
|
|
|
|
\begin{document}
|
|
|
|
\begin{center} % Center everything in the document
|
|
|
|
%----------------------------------------------------------------------------------------
|
|
% HEADER SECTION
|
|
%----------------------------------------------------------------------------------------
|
|
|
|
{\fontsize{36}{36}\selectfont\scshape\textls[200]{<%= @user.name %>}} % Your name at the top
|
|
|
|
\vspace{1.0cm} % Extra whitespace after the large name at the top
|
|
|
|
%----------------------------------------------------------------------------------------
|
|
% OBJECTIVE
|
|
%----------------------------------------------------------------------------------------
|
|
|
|
\section{Objective}
|
|
|
|
% A position in the field of computers with special interests in business applications \\ programming, information processing, and management systems.
|
|
<%= @user.objective %>
|
|
|
|
%----------------------------------------------------------------------------------------
|
|
% WORK EXPERIENCE
|
|
%----------------------------------------------------------------------------------------
|
|
|
|
\section{Work Experience}
|
|
|
|
<% @user.work_experiences.each do |w| %>
|
|
\begin{tabularx}{0.97\linewidth}{>{\raggedleft\scshape}p{2.5cm}X}
|
|
\gray Period & \textbf{<%= w.period %>}\\
|
|
\gray Employer & \textbf{<%= w.employer %>} \hfill \\
|
|
\gray Job Title & \textbf{<%= w.title %>}\\
|
|
\gray Technologies & \textbf{<%= w.technologies %>}\\
|
|
& <%= w.achivements %>
|
|
\end{tabularx}
|
|
|
|
\vspace{12pt}
|
|
<% end %>
|
|
|
|
%----------------------------------------------------------------------------------------
|
|
% EDUCATION
|
|
%----------------------------------------------------------------------------------------
|
|
|
|
\section{Education}
|
|
|
|
<% @user.education_entries.each do |e| %>
|
|
\begin{tabularx}{0.97\linewidth}{>{\raggedleft\scshape}p{2cm}X}
|
|
\gray Period & \textbf{<%= e.period %>}\\
|
|
\gray Title & \textbf{<%= e.title %>}\\
|
|
\gray Institution & \textbf{<%= e.institution %>} \hfill <%= e.location %>\\
|
|
%& Extra information about degree
|
|
\end{tabularx}
|
|
|
|
\vspace{12pt}
|
|
<% end %>
|
|
|
|
%----------------------------------------------------------------------------------------
|
|
% SKILLS
|
|
%----------------------------------------------------------------------------------------
|
|
|
|
\section{Skills}
|
|
|
|
\begin{tabular}{ @{} >{\bfseries}l @{\hspace{6ex}} l }
|
|
<% @user.skills.order(order: :asc).each do |s| %>
|
|
<%= s.title %> & <%= s.detail %>\\
|
|
<% end %>
|
|
\end{tabular}
|
|
|
|
%----------------------------------------------------------------------------------------
|
|
|
|
\end{center}
|
|
|
|
\end{document}
|