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.
104 lines
3.3 KiB
104 lines
3.3 KiB
<%
|
|
user = @cover_letter.user
|
|
%>
|
|
%!TEX TS-program = xelatex
|
|
%!TEX encoding = UTF-8 Unicode
|
|
% Awesome CV LaTeX Template for Cover Letter
|
|
%
|
|
% This template has been downloaded from:
|
|
% https://github.com/posquit0/Awesome-CV
|
|
%
|
|
% Authors:
|
|
% Claud D. Park <posquit0.bj@gmail.com>
|
|
% Lars Richter <mail@ayeks.de>
|
|
%
|
|
% Template license:
|
|
% CC BY-SA 4.0 (https://creativecommons.org/licenses/by-sa/4.0/)
|
|
%
|
|
|
|
%-------------------------------------------------------------------------------
|
|
% 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 %>
|
|
|
|
%-------------------------------------------------------------------------------
|
|
% LETTER INFORMATION
|
|
% All of the below lines must be filled out
|
|
%-------------------------------------------------------------------------------
|
|
% The company being applied to
|
|
\recipient
|
|
{<%= @cover_letter.company_name.tex_safe %>}
|
|
{ Company Recruitment Team }
|
|
% The date on the letter, default is the date of compilation
|
|
\letterdate{\today}
|
|
% The title of the letter
|
|
\lettertitle{Job Application for <%= @cover_letter.title.tex_safe %>}
|
|
% How the letter is opened
|
|
\letteropening{To whom it may concern,}
|
|
% How the letter is closed
|
|
\letterclosing{Yours Sincerely,}
|
|
% Any enclosures with the letter
|
|
\letterenclosure[Attached]{Curriculum Vitae}
|
|
|
|
%-------------------------------------------------------------------------------
|
|
\begin{document}
|
|
|
|
% Print the header with above personal information
|
|
% Give optional argument to change alignment(C: center, L: left, R: right)
|
|
\makecvheader[R]
|
|
|
|
% 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 %>~~~·~~~Cover Letter}
|
|
{}
|
|
|
|
% Print the title with above letter information
|
|
\makelettertitle
|
|
|
|
%-------------------------------------------------------------------------------
|
|
% LETTER CONTENT
|
|
%-------------------------------------------------------------------------------
|
|
\begin{cvletter}
|
|
|
|
<%= @cover_letter.tex_intro_paragraph %>
|
|
|
|
<% if @cover_letter.about_me.present? %>
|
|
\lettersection{About Me}
|
|
<%= @cover_letter.about_me.tex_safe %>
|
|
<% end %>
|
|
%------------------------------------------------
|
|
|
|
<% if @cover_letter.why_company.present? %>
|
|
\lettersection{Why <%= @cover_letter.company_name.tex_safe %> ?}
|
|
<%= @cover_letter.why_company.tex_safe %>
|
|
<% end %>
|
|
%------------------------------------------------
|
|
|
|
<% if @cover_letter.why_me.present? %>
|
|
\lettersection{Why Me?}
|
|
<%= @cover_letter.why_me.tex_safe %>
|
|
<% end %>
|
|
|
|
\end{cvletter}
|
|
|
|
%-------------------------------------------------------------------------------
|
|
% Print the signature and enclosures with above letter information
|
|
\makeletterclosing
|
|
|
|
\end{document}
|
|
|