% From: http://www.tedpavlic.com/post_resume_cv_latex_example.php
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%% Simple LaTeX CV Template %%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% NOTE: If you find that it says                                     %%
%%                                                                    %%
%%                           1 of ??                                  %%
%%                                                                    %%
%% at the bottom of your first page, this means that the AUX file     %%
%% was not available when you ran LaTeX on this source. Simply RERUN  %% 
%% LaTeX to get the ``??'' replaced with the number of the last page  %% 
%% of the document. The AUX file will be generated on the first run   %%
%% of LaTeX and used on the second run to fill in all of the          %%
%% references.                                                        %%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

%%%%%%%%%%%%%%%%%%%%%%%%%%%% Document Setup %%%%%%%%%%%%%%%%%%%%%%%%%%%%

% Don't like 10pt? Try 11pt or 12pt
\documentclass[12pt]{article}

% This is a helpful package that puts math inside length specifications
\usepackage{calc}

% Layout: Puts the section titles on left side of page
\reversemarginpar

%
%         PAPER SIZE, PAGE NUMBER, AND DOCUMENT LAYOUT NOTES:
%
% The next \usepackage line changes the layout for CV style section
% headings as marginal notes. It also sets up the paper size as either
% letter or A4. By default, letter was used. If A4 paper is desired,
% comment out the letterpaper lines and uncomment the a4paper lines.
%
% As you can see, the margin widths and section title widths can be
% easily adjusted.
%
% ALSO: Notice that the includefoot option can be commented OUT in order
% to put the PAGE NUMBER *IN* the bottom margin. This will make the
% effective text area larger.
%
% IF YOU WISH TO REMOVE THE ``of LASTPAGE'' next to each page number,
% see the note about the +LP and -LP lines below. Comment out the +LP
% and uncomment the -LP.
%
% IF YOU WISH TO REMOVE PAGE NUMBERS, be sure that the includefoot line
% is uncommented and ALSO uncomment the \pagestyle{empty} a few lines
% below.
%

%% Use these lines for letter-sized paper
\usepackage[paper=letterpaper,
            %includefoot, % Uncomment to put page number above margin
            marginparwidth=1.0in,     % Length of section titles
            marginparsep=.05in,       % Space between titles and text
            margin=1in,               % 1 inch margins
            left=1.55in
            %includemp
            ]{geometry}

%% Use these lines for A4-sized paper
%\usepackage[paper=a4paper,
%            %includefoot, % Uncomment to put page number above margin
%            marginparwidth=30.5mm,    % Length of section titles
%            marginparsep=1.5mm,       % Space between titles and text
%            margin=25mm,              % 25mm margins
%            includemp]{geometry}

%% More layout: Get rid of indenting throughout entire document
\setlength{\parindent}{0in}

%% This gives us fun enumeration environments. compactenum will be nice.
\usepackage{paralist}

%% Reference the last page in the page number
%
% NOTE: comment the +LP line and uncomment the -LP line to have page
%       numbers without the ``of ##'' last page reference)
%
% NOTE: uncomment the \pagestyle{empty} line to get rid of all page
%       numbers (make sure includefoot is commented out above)
%
\usepackage{fancyhdr,lastpage}
\pagestyle{fancy}
%\pagestyle{empty}      % Uncomment this to get rid of page numbers
\fancyhf{}\renewcommand{\headrulewidth}{0pt}
%% \fancyfootoffset{\marginparsep+\marginparwidth}
%% \newlength{\footpageshift}
%% \setlength{\footpageshift}
%%           {0.5\textwidth+0.5\marginparsep+0.5\marginparwidth-2in}
%% \lfoot{\hspace{\footpageshift}%
%%        \parbox{4in}{\, \hfill %
%%                      \arabic{page} of \protect\pageref*{LastPage}% +LP
%% %                    \arabic{page}                               % -LP
%%                     \hfill \,}}
%% \rfoot{\textit{CV} \hspace{1in}}

\fancyfootoffset{\marginparsep+\marginparwidth}
\lfoot{\scshape R. H. Kramer}
\cfoot{\arabic{page} of \protect\pageref*{LastPage}\hspace{\marginparwidth}}
\rhead{\large \textit{Curriculum Vitae}}

% Finally, give us PDF bookmarks
\usepackage{color,hyperref}
\definecolor{darkblue}{rgb}{0.0,0.0,0.3}
\hypersetup{colorlinks,breaklinks,
            linkcolor=darkblue,urlcolor=darkblue,
            anchorcolor=darkblue,citecolor=darkblue}

%%%%%%%%%%%%%%%%%%%%%%%% End Document Setup %%%%%%%%%%%%%%%%%%%%%%%%%%%%


%%%%%%%%%%%%%%%%%%%%%%%%%%% Helper Commands %%%%%%%%%%%%%%%%%%%%%%%%%%%%

% The title (name) with a horizontal rule under it
%
% Usage: \makeheading{name}
%
% Place at top of document. It should be the first thing.
\newcommand{\makeheading}[1]%
        {\hspace*{-\marginparsep minus \marginparwidth}%
         \begin{minipage}[t]{\textwidth+\marginparwidth+\marginparsep}%
                {\large \bfseries #1}\\[-0.15\baselineskip]%
         \end{minipage}}

% The section headings
%
% Usage: \section{section name}
%
% Follow this section IMMEDIATELY with the first line of the section
% text. Do not put whitespace in between. That is, do this:
%
%       \section{My Information}
%       Here is my information.
%
% and NOT this:
%
%       \section{My Information}
%
%       Here is my information.
%
% Otherwise the top of the section header will not line up with the top
% of the section. Of course, using a single comment character (%) on
% empty lines allows for the function of the first example with the
% readability of the second example.
\renewcommand{\section}[2]%
        {\pagebreak[2]\vspace{1.0\baselineskip}%
         \phantomsection\addcontentsline{toc}{section}{#1}%
         \hspace{0in}%
         \marginpar{
         \raggedright \scshape \small #1}#2}
\renewcommand{\subsection}[2]%
        {\pagebreak[2]%\vspace{1.0\baselineskip}%
         \hspace{0in}%
         \marginpar{\hspace{0.05in}
         \raggedright \small #1}#2}

% An itemize-style list with lots of space between items
\newenvironment{outerlist}[1][\enskip\textbullet]%
        {\begin{enumerate}[#1]}{\end{enumerate}%
         \vspace{-.6\baselineskip}}

% An environment IDENTICAL to outerlist that has better pre-list spacing
% when used as the first thing in a \section
\newenvironment{lonelist}[1][\enskip\textbullet]%
        {\vspace{-\baselineskip}\begin{list}{#1}{%
        \setlength{\partopsep}{0pt}%
        \setlength{\topsep}{0pt}}}
        {\end{list}\vspace{-.6\baselineskip}}

% An itemize-style list with little space between items
\newenvironment{innerlist}[1][\enskip\textbullet]%
        {\begin{compactenum}[#1]}{\end{compactenum}}

% To add some paragraph space between lines.
% This also tells LaTeX to preferably break a page on one of these gaps
% if there is a needed pagebreak nearby.
\newcommand{\blankline}{\quad\pagebreak[2]}

%%%%%%%%%%%%%%%%%%%%%%%% End Helper Commands %%%%%%%%%%%%%%%%%%%%%%%%%%%

%%%%%%%%%%%%%%%%%%%%%%%%% Begin CV Document %%%%%%%%%%%%%%%%%%%%%%%%%%%%

\begin{document}
\textbf{\Large Roban Hultman Kramer}

\section{Contact Information}
%
% NOTE: Mind where the & separators and \\ breaks are in the following
%       table.
%
% ALSO: \rcollength is the width of the right column of the table 
%       (adjust it to your liking; default is 1.85in).
%
\newlength{\rcollength}\setlength{\rcollength}{3.2in}%
%
\begin{tabular}[t]{@{}p{\textwidth-\rcollength}p{\rcollength}}
Department of Astronomy\\
Columbia University & (347) 426-6662 \\
%Pupin Physics Laboratories Room 1328  
550 West 120th Street & \url{roban@astro.columbia.edu}\\
New York, New York 10027 (USA) & \url{http://www.astro.columbia.edu/~roban/}
\end{tabular}

\section{Present Position}
%
Zwicky Fellow, Institute of Astronomy, ETH Zurich, beginning January 2009

\section{Education}
%
Ph.D. Astronomy, Columbia University, 2009\\
M.A. and M. Phil. Astronomy, Columbia University, 2007\\
B.A. Astrophysics, Swarthmore College, 2003, with High Honors

\section{Refereed Journal Publications}
%
\textbf{Calibrating the Use of Quasar Lyman-$\alpha$ Emission Lines\\
  as Probes of Reionization}\\
Kramer, Roban Hultman; Haiman, Zolt\'an. \textit{MNRAS} (in press)\vspace{10pt}

\textbf{The Thickness of High-Redshift Quasar Ionization Fronts as a Constraint on the Ionizing
Spectral Energy Distribution}\\ 
Kramer, Roban Hultman; Haiman, Zolt\'an. \textit{MNRAS, 385, 1561} (2008)\vspace{10pt}

\textbf{Feedback from Clustered Sources During Reionization}\\
Kramer, Roban Hultman; Haiman, Zolt\'an; Oh, Peng. \textit{ApJ, 649, 570}
(2006)  \vspace{10pt}

\textbf{X-ray Emission-Line Profile Modeling of O Stars: Fitting a Spherically
Symmetric Analytic Wind-Shock Model to the Chandra Spectrum of $\zeta$~Puppis}\\
Kramer, Roban H.; Cohen, David H.; Owocki, Stanley P. \textit{ApJ, 592, 532}
(2003)  \vspace{10pt}

\textbf{X-ray Emission Line Profile Modeling of Hot Stars}\\
Kramer, Roban H.; Tonnesen, Stephanie K.; Cohen, David H.; Owocki,
Stanley P.; ud-Doula, Asif; MacFarlane, Joseph J. \textit{Rev. Sci. Inst., 74,
1966} (2003)

\section{Talks}
\subsection{Academic}
%
\textbf{Calibrating the Use of Quasar Lyman-$\alpha$ Emission Lines
  as Probes of Reionization}\\
\textit{XXIVth IAP Conference ``Far Away: Light in the young
  Universe''}, IAP, Paris, July 7-11, 2008\vspace{10pt}

\textbf{The Thickness of High-z Quasar Ionization Fronts
  as a Constraint on the Quasar Ionizing SED}\\
\textit{The First Two Billion Years of Galaxy Formation:
The Reionization Epoch and Beyond}, Aspen Center for Physics, February 11-15, 2008 \vspace{10pt}

\textbf{Clustering and Feedback in the Early Stages of
  Reionization}\\
\textit{The End of the Dark Ages}, STScI, Baltimore, March 11-13, 2006 \vspace{10pt}

\subsection{Public}
\textbf{Weather on Other Planets}, Columbia University, New York, November 2, 2007

%\newpage

\section{Research Experience}
%
Research with Zolt\'an Haiman, Columbia University,
2004-Present:\\ Modeled feedback during reionization and the use of
high-redshift quasars as probes of the reionization
epoch. \vspace{10pt}

Research with David Cohen, Swarthmore College, 2001-2003:\\ Developed
numerical modeling and fitting code to study the x-ray emission-line
profiles generated in the outflows around OB stars.

\section{Teaching Experience}
%
\textbf{Laboratory Instructor}, \textit{Earth, Moon, and Planets Laboratory}\\
%
Columbia University, 2004-2006\\
% 
Created and taught astronomy laboratory classes involving
collaborative classroom work, computer simulations, hands-on physical
laboratory exercises, outdoor observing sessions, and unique field
trips. Developed exercise plans still in use today.\vspace{10pt}

\textbf{Teaching Assistant}, \textit{Beyond the Solar System}\\
%
Columbia University, 2006\\
%
Conducted review sessions, ran weekly help sessions, graded student
work, created and delivered a lecture. With Professor Kathryn
Johnston.

\section{Technical Experience}
%
Python (SciPy/NumPy), Perl (PDL), Java, IDL, Mathematica, C.\vspace{10pt}

Author of CosmoloPy, a cosmology package for python:\\ \url{http://roban.github.com/CosmoloPy/}.\vspace{10pt}

Astronomy packages: IRAF, AIPS, DAOPHOT, Cloudy.\vspace{10pt}

\end{document}

%%%%%%%%%%%%%%%%%%%%%%%%%% End CV Document %%%%%%%%%%%%%%%%%%%%%%%%%%%%%

