Created
October 3, 2015 20:12
-
-
Save mmcclimon/5be7ea2f01afd3c05f1a to your computer and use it in GitHub Desktop.
CV template
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\documentclass[12pt]{article} | |
\usepackage[margin=1in,headheight=.5in]{geometry} | |
\usepackage{fontspec} | |
\usepackage{titlesec} | |
\usepackage{array} | |
\defaultfontfeatures{Mapping=tex-text,Scale=MatchUppercase,% | |
SmallCapsFeatures={LetterSpace=5.0,Letters = SmallCaps}} | |
\setmainfont[Numbers={OldStyle}]{Minion Pro} | |
\titleformat*{\section}{\large} | |
\pagestyle{empty} | |
\newcolumntype{L}{>{\raggedleft}p{0.15\textwidth}} | |
\newcolumntype{R}{>{\raggedright}p{0.75\textwidth}} | |
\newcommand\VRule{\vrule width 0.5pt} | |
\usepackage{amssymb} | |
\newcommand{\pmarker}[1][\raisebox{3pt}{$\centerdot$}]{\makebox[2.25em][r]{#1 }} | |
\begin{document} | |
\flushleft | |
{\LARGE | |
John Appleseed | |
} | |
\hfill | |
\begin{minipage}[b]{3in} | |
\flushright \small | |
[email protected] \\ | |
(555)\thinspace 555-5555 | www. example.com | |
\end{minipage} | |
\rule[0.5em]{\textwidth}{0.5pt} | |
\section*{Education} | |
\renewcommand{\baselinestretch}{1.1}\selectfont | |
\begin{tabular}{L|R} | |
1912 & \textbf{Some school} \\[0.25em] | |
Degree \\ | |
Other stuff | |
\tabularnewline[1em] | |
1908 & \textbf{Some school}\\[0.25em] | |
Some other degree | |
\tabularnewline[1em] | |
1906 & \textbf{Undergrad school}, Greenville, SC \\[0.25em] | |
Degree | |
\end{tabular} | |
\section*{Teaching Experience} | |
\begin{tabular}{L|R} | |
1900--1902 & \textbf{Title}, Place \\[0.25em] | |
\small | |
Duties: description | |
\tabularnewline[1em] | |
1889--1900 & \textbf{Some position}, Some other place \\[0.25em] | |
\small | |
other description | |
\end{tabular} | |
\section*{Conference Papers} | |
\bgroup | |
\leftskip=2em | |
\textbf{Very important paper} \\[0.25em] | |
{\small \pmarker Important conference } | |
\vspace{0.75em} | |
\textbf{Less important paper} \\[0.25em] | |
{\small | |
\pmarker\ Some other conference} | |
\vspace{0.75em} | |
\egroup | |
\section*{Professional Activity} | |
\begin{tabular}{L|R} | |
1900--1904 & Some committee | |
\tabularnewline[0.5em] | |
1899--1900 & Some other committee | |
\tabularnewline[0.5em] | |
\end{tabular} | |
\end{document} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment