mention letter-boilerplate

master
zool 9 years ago
parent 512921b8be
commit a28aec3314

@ -76,6 +76,10 @@ Refer to [pandoc's documentation](http://pandoc.org/demo/example9/templates.html
- [Typesetting your academic CV in LaTeX](http://nitens.org/taraborelli/cvtex) by Dario Taraborelli
- [Résumé advices](http://practicaltypography.com/resumes.html) from Butterick's Practical Typography
## See also
- [letter-boilerplate](https://github.com/mrzool/letter-boilerplate) — Quickly and painlessly generate high-quality letters from markdown through LaTeX
## License
This repository contains a modified version of Dario Taraborelli's [cvtex](https://github.com/dartar/cvtex) template.

@ -1,4 +1,4 @@
output.pdf : template.tex content.yml
output.pdf : template.tex ../cv-data/content.yml
pandoc $(filter-out $<,$^ ) -o $@ --latex-engine=xelatex --template=$<
clean :

Binary file not shown.

@ -5,17 +5,23 @@
% LAYOUT
%--------------------------------
% Margins
\usepackage{geometry}
\geometry{$geometry$}
% Do not indent paragraphs
\setlength\parindent{0in}
% Enable multicolumns
\usepackage{multicol}
\setlength{\columnsep}{-3.5cm}
% No page numbers
% Uncomment to suppress page numbers
% \pagenumbering{gobble}
% LANGUAGE
%--------------------------------
% Set the main language
$if(lang)$
\usepackage{polyglossia}
\setmainlanguage{$lang$}
@ -29,7 +35,7 @@ $endif$
% converts LaTeX specials (quotes, dashes etc.) to Unicode
\defaultfontfeatures{Mapping=tex-text}
\setromanfont [Ligatures={Common}, Numbers={OldStyle}]{$mainfont$}
% Custom ampersand
% Cool ampersand
\newcommand{\amper}{{\fontspec[Scale=.95]{$mainfont$}\selectfont\itshape\&}}
% MARGIN NOTES
@ -53,7 +59,6 @@ $endif$
\usepackage[xetex, bookmarks, colorlinks, breaklinks, pdftitle={$name$'s Vita},pdfauthor={$name$}]{hyperref}
\hypersetup{linkcolor=blue,citecolor=blue,filecolor=black,urlcolor=blue}
% DOCUMENT
%--------------------------------
\begin{document}
@ -82,7 +87,7 @@ $endfor$
$intro$
\subsection*{Areas of Interest}
% \subsection*{Areas of Interest}
\begin{itemize}
$for(skills)$
\item $skills$

Loading…
Cancel
Save