Created
March 27, 2011 03:15
-
-
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
This file contains hidden or 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{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