Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions details.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,27 @@ education:
institute: Schulpforta
city: Naumburg

# Phase sections out as needed prefixing them with '#'
teaching:
- year: 1870
title: Classical Philogoy
institute: Universität Basel
city: Basel
- year: 1869
title: Philosophy
institute: Gymnasium am Münsterplatz
city: Basel

honors:
- year: 1885
title: Knight of the Order
institute: Order of the Expelled
city: London
- year: 1880
title: President
institute: Association of Nietzschean Philosophy
city: Basel

# Settings
mainfont: Hoefler Text
fontsize: 10pt
Expand Down
46 changes: 33 additions & 13 deletions template.tex
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
% LAYOUT
%--------------------------------
% Margins
\usepackage{geometry}
\usepackage{geometry}
\geometry{$geometry$}

% Do not indent paragraphs
Expand All @@ -17,7 +17,7 @@
\setlength{\columnsep}{-3.5cm}

% Uncomment to suppress page numbers
% \pagenumbering{gobble}
\pagenumbering{gobble}

% LANGUAGE
%--------------------------------
Expand All @@ -29,7 +29,7 @@

% TYPOGRAPHY
%--------------------------------
\usepackage{fontspec}
\usepackage{fontspec}
\usepackage{xunicode}
\usepackage{xltxtra}
% converts LaTeX specials (quotes, dashes etc.) to Unicode
Expand All @@ -48,11 +48,11 @@

% HEADINGS
%--------------------------------
\usepackage{sectsty}
\usepackage[normalem]{ulem}
\sectionfont{\rmfamily\mdseries}
\subsectionfont{\rmfamily\mdseries\scshape\normalsize}
\subsubsectionfont{\rmfamily\bfseries\upshape\normalsize}
\usepackage{sectsty}
\usepackage[normalem]{ulem}
\sectionfont{\rmfamily\mdseries}
\subsectionfont{\rmfamily\mdseries\scshape\normalsize}
\subsubsectionfont{\rmfamily\bfseries\upshape\normalsize}

% PDF SETUP
%--------------------------------
Expand Down Expand Up @@ -118,6 +118,15 @@ \subsection*{Areas of Interest}

\vspace{25pt}

$if(education)$
\section*{Education}
\noindent
$for(education)$
\note{$education.year$}\textbf{$education.subject$}$if(education.degree)$, $education.degree$$endif$\\
\emph{$education.institute$}$if(education.city)$, $education.city$$endif$\\[.2cm]
$endfor$
$endif$

\section*{Previous Experience}
\noindent
$for(experience)$
Expand All @@ -126,12 +135,23 @@ \section*{Previous Experience}
$experience.city$\\[.2cm]
$endfor$

$if(education)$
\section*{Education}
$if(teaching)$
\section*{Teaching}
\noindent
$for(education)$
\note{$education.year$}\textbf{$education.subject$}$if(education.degree)$, $education.degree$$endif$\\
\emph{$education.institute$}$if(education.city)$, $education.city$$endif$\\[.2cm]
$for(teaching)$
\note{$teaching.year$}\textsc{$teaching.institute$}\\
\emph{$teaching.title$}\\
$teaching.city$\\[.2cm]
$endfor$
$endif$

$if(honors)$
\section*{Honors}
\noindent
$for(honors)$
\note{$honors.year$}\textsc{$honors.institute$}\\
\emph{$honors.title$}\\
$honors.city$\\[.2cm]
$endfor$
$endif$

Expand Down