Skip to content

Commit

Permalink
adding some sample resumes that I found online at: http://www.rpi.edu…
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewfl committed Sep 15, 2012
0 parents commit 566d14b
Show file tree
Hide file tree
Showing 9 changed files with 1,168 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
@@ -0,0 +1,2 @@
*.log
*.aux
11 changes: 11 additions & 0 deletions Makefile
@@ -0,0 +1,11 @@
Latex = $(wildcard *.tex)
Pdfs = $(Latex:.tex=.pdf)

all: $(Pdfs)

%.pdf: %.tex
rm -f $@
latex --output-format=pdf $<

clean:
rm -rf *.pdf *.log *.aux
32 changes: 32 additions & 0 deletions helvetica.sty
@@ -0,0 +1,32 @@
%%
%% This is file `helvetica.sty', based on helvet.sty extended to include
%% definitions for rm and tt. This means commands such as \textbf, \textit,
%% etc. will appear in Helvetica.
%% Changes added by Harriet Borton on <1995/12/11>
%%
%% The original source files were:
%%
%% psfonts.dtx (with options: `helvet')
%%
%% Copyright (C) 1994 Sebastian Rahtz
%% All rights reserved.
%%
%% The original file is part of the PSNFSS2e package.
%% -----------------------------------------
%%
%% This is a generated file. Permission is granted to to customize the
%% declarations in this file to serve the needs of your installation.
%% However, no permission is granted to distribute a modified version of
%% this file under its original name.
\def\fileversion{4.2}
\def\filedate{94/11/11}
\def\docdate {94/11/06}
\NeedsTeXFormat{LaTeX2e}
\ProvidesPackage{helvetica}[\filedate\space\fileversion\space
Helvetica PSNFSS2e package]
\renewcommand{\sfdefault}{phv}
\renewcommand{\rmdefault}{phv}
\renewcommand{\ttdefault}{pcr}
\endinput
%%
%% End of file `helvetica.sty'.

0 comments on commit 566d14b

Please sign in to comment.