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 - [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 - [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 ## License
This repository contains a modified version of Dario Taraborelli's [cvtex](https://github.com/dartar/cvtex) template. 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=$< pandoc $(filter-out $<,$^ ) -o $@ --latex-engine=xelatex --template=$<
clean : clean :

Binary file not shown.

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

Loading…
Cancel
Save