diff --git a/awesome-cv.cls b/awesome-cv.cls index eff3e88..1f0eb67 100644 --- a/awesome-cv.cls +++ b/awesome-cv.cls @@ -253,6 +253,9 @@ \newcommand*{\skilltypestyle}[1]{{\fontsize{10pt}{1em}\bodyfont\bfseries\color{darktext} #1}} \newcommand*{\skillsetstyle}[1]{{\fontsize{9pt}{1em}\bodyfontlight\color{text} #1}} +% For elements of the cover letter +\newcommand*{\cvletteraddressstyle}[1]{{\fontsize{10pt}{1em}\bodyfont\scshape\color{graytext} #1}} +\newcommand*{\cvlettertitelstyle}[1]{{\fontsize{11pt}{1em}\bodyfont\bfseries\color{darktext} #1}} %------------------------------------------------------------------------------- % Commands for personal information @@ -566,3 +569,30 @@ \end{justify} \vspace{-2mm} } + + +%------------------------------------------------------------------------------- +% Commands for elements of Cover Letter +%------------------------------------------------------------------------------- +% Define an environment for cvletter +\newenvironment{cvletter}{ +\fontsize{11pt}{1.3em}\bodyfontlight\upshape\color{darktext}\selectfont +}{ +} + +% Define the header of the cover letter +% Usage: \cvletterinfo {Name}{Street}{City}{Country}{JobTitle} +\newcommand*{\cvletterinfo}[5]{ + \setlength\tabcolsep{0pt} + \setlength{\extrarowheight}{0pt} + \begin{tabular*}{\textwidth}{@{\extracolsep{\fill}} L{12.5cm} R{4.5cm}} + \vspace{0.5cm} \\ + \cvletteraddressstyle{#1} \\ + \cvletteraddressstyle{#2} \\ + \cvletteraddressstyle{#3} \\ + \cvletteraddressstyle{#4} \\ + & \entrydatestyle{\today} \\ + \\ + \cvlettertitelstyle{#5} \\ + \end{tabular*} +} diff --git a/examples/coverletter.pdf b/examples/coverletter.pdf new file mode 100644 index 0000000..a03206a Binary files /dev/null and b/examples/coverletter.pdf differ diff --git a/examples/coverletter.tex b/examples/coverletter.tex new file mode 100644 index 0000000..24eba69 --- /dev/null +++ b/examples/coverletter.tex @@ -0,0 +1,86 @@ +%!TEX TS-program = xelatex +%!TEX encoding = UTF-8 Unicode +% Awesome CV LaTeX Template +% +% This template has been downloaded from: +% https://github.com/posquit0/Awesome-CV +% +% Author: +% Claud D. Park +% http://www.posquit0.com +% +% Template license: +% CC BY-SA 4.0 (https://creativecommons.org/licenses/by-sa/4.0/) +% + + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% 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}{cv/} + +%%% 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 +\name{Claud D. }{Park} +\address{246-1002, Gwangmyeongmayrouge Apt. 86, Cheongna lime-ro, Seo-gu, Incheon-si, 404-180, Rep. of KOREA} +\mobile{(+82) 10-9030-1843} +%%% Social +\email{posquit0.bj@gmail.com} +\homepage{www.posquit0.com} +\github{posquit0} +\linkedin{posquit0} +%%% Optionals +\position{Software Engineer{\enskip\cdotp\enskip}Security Expert} +\quote{``Make the change that you want to see in the world."} + + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% Content +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +%%% Make a footer for CV with three arguments(,
, ) +\makecvfooter + {\today} + {Claud D. Park~~~·~~~Cover Letter} + {\thepage} + +\begin{document} +%%% Make a header for CV using personal data +\makecvheader + +%%% Import contents +\import{\sectiondir}{cvletter.tex} + +\end{document} diff --git a/examples/cv/cvletter.tex b/examples/cv/cvletter.tex new file mode 100644 index 0000000..9f2933b --- /dev/null +++ b/examples/cv/cvletter.tex @@ -0,0 +1,20 @@ +\begin{cvletter} + \cvletterinfo + {Company Name} + {Awesome Street 1} + {Cool Town} + {Germany} + {Fancy job title} + +Dear Mr./Ms./Dr. LastName: + +Opening paragraph: State why you are writing; how you learned of the organization or position, and basic information about yourself. + +2nd paragraph: Tell why you are interested in the employer or type of work the employer does (Simply stating that you are interested does not tell why, and can sound like a form letter). Demonstrate that you know enough about the employer or position to relate your background to the employer or position. Mention specific qualifications which make you a good fit for the employer’s needs. (Focus on what you can do for the employer, not what the employer can do for you.) This is an opportunity to explain in more detail relevant items in your resume. Refer to the fact that your resume is enclosed. Mention other enclosures if such are required to apply for a position. + +3rd paragraph: Indicate that you would like the opportunity to interview for a position or to talk with the employer to learn more about their opportunities or hiring plans. State what you will do to follow up, such as telephone the employer within two weeks. If you will be in the employer’s location and could offer to schedule a visit, indicate when. State that you would be glad to provide the employer with any additional information needed. Thank the employer for her/his consideration. + +Sincerely,\newline + +Lars Richter +\end{cvletter}