Skip to content

Instantly share code, notes, and snippets.

@jharjono
Created March 27, 2011 03:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jharjono/888876 to your computer and use it in GitHub Desktop.
Save jharjono/888876 to your computer and use it in GitHub Desktop.
Sample main file for a LaTeX resume; being able to structure resumes like this is one of the reasons why I like LaTeX for resumes
\documentclass{article}
% Custom Macros and Packages---------------------------
\input{macros}
% Header and Footer------------------------------------
\input{header_footer}
\begin{document}
% ensures that first page does not have header
\thispagestyle{plain}
% Banner & Contact info -------------------------------
\input{contact}
% Contents---------------------------------------------
%\input{objective} --- note that this section will not be included
\input{skills}
\input{education}
\input{employment}
\input{projects}
\input{volunteer}
\input{interests}
\input{references}
% Timestamp -------------------------------------------
\begin{center}
\tiny Current as of: \today
\end{center}
\end{document}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment