From 60fe358519640cc3c4050472460d35296aac8bdf Mon Sep 17 00:00:00 2001 From: ozzloy Date: Thu, 3 Dec 2009 23:59:36 -0800 Subject: [PATCH] reorganize, add example, ignore binaries --- .gitignore | 2 + examples/ex-res1.tex | 84 +++++++++++++++++++ makefile | 3 + .../daniel_watson_resume.tex | 0 4 files changed, 89 insertions(+) create mode 100644 .gitignore create mode 100644 examples/ex-res1.tex rename daniel_watson_resume.tex => src/daniel_watson_resume.tex (100%) diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..685bf31 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +*.log +*.dvi diff --git a/examples/ex-res1.tex b/examples/ex-res1.tex new file mode 100644 index 0000000..55dd727 --- /dev/null +++ b/examples/ex-res1.tex @@ -0,0 +1,84 @@ +% LaTeX file for resume +% This file uses the resume document class (res.cls) + +\documentclass{res} +%\usepackage{helvetica} % uses helvetica postscript font (download helvetica.sty) +%\usepackage{newcent} % uses new century schoolbook postscript font +\setlength{\textheight}{9.5in} % increase text height to fit on 1-page + +\begin{document} + +\name{HAROLD C. GOODBETTER\\[12pt]} % the \\[12pt] adds a blank + % line after name + +\address{\bf PRESENT ADDRESS\\193 5th Avenue\\Troy, NY 12180\\(518) 274-1234} +\address{\bf PERMANENT ADDRESS \\ 110 Brant Avenue \\ Upper Saddle + River, NJ 07458 \\ (201) 555-9509} + +\begin{resume} + +\section{JOB OBJECTIVE} + A summer position that will use my accounting and computer + skills. + +\section{EDUCATION} + Rensselaer Polytechnic Institute, Troy, NY \\ + Bachelor of Science, Management, May 1990 \\ + Concentration in Management Systems \\ + Minors in Computer Science and Economics \\ + G.P.A. 3.3/4.0 + + +\section{EXPERIENCE} + \vspace{-0.1in} + \begin{tabbing} + \hspace{2.3in}\= \hspace{2.6in}\= \kill % set up two tab positions + {\bf Telefund Associate} \>Rensselaer Fund \>Fall 1987-Present\\ + \>Troy, NY + \end{tabbing}\vspace{-20pt} % suppress blank line after tabbing + Generated alumni and parent support to reduce tuition, + increase scholarship and financial aid funds; averaging 80 + percent pledge rate. Top three percent associate. + \begin{tabbing} + \hspace{2.3in}\= \hspace{2.6in}\= \kill % set up two tab positions + {\bf Team Programmer} \>Group W Cable, Westinghouse Corp \> ~~~~~~ Summer 1987\\ + \>Mahway, NJ + \end{tabbing}\vspace{-20pt} + Liaison between accounting department and controller, + provided assistance with invoice liabilities after + divestiture of Group W Cable by Westinghouse. + \begin{tabbing}% + \hspace{2.3in}\= \hspace{2.6in}\= \kill % set up two tab positions + {\bf Sales Assistant} \>AP Technical Sales Inc. \> Summers 1985-86\\ + \>Palisades Park, NJ + \end{tabbing}\vspace{-20pt} + Duties included telemarketing, data entry, and invoicing. + Successfully converted catalog inquiries to sales + opportunities by telemarketing program. + + +\section{COMPUTER SKILLS} + Extensive knowledge of hardware and software for IBM PC and + MTS. \\ + Proficient programming skills in COBOL, WATFIV (FORTRAN), and + BASIC. + + +\section{HONORS AND AWARDS} + Epsilon Delta Sigma: Honorary Management Society at + Rensselaer \\ + Dean's List of Distinguished Students: Fall 1986-Spring 1988 \\ + National Honor Society: Northern Highlands High School \\ + Creative Essay Award: Northern Highlands High School \\ + Meritorious Action Life Saving Award: Boy Scouts of America + +\section{EXTRACURRICULAR ACTIVITIES} + Epsilon Delta Sigma Public Relations Committee \\ + Rensselaer Ski Club \\ + Bergen County Task Force Student Liaison 1986 \\ + LEADD (Legislators and Educators Against Drunk Driving) Chairman + 1985-86 \\ + Youth Group - Temple Beth Or Activities Chairman 1985-86 + +\end{resume} +\end{document} \ No newline at end of file diff --git a/makefile b/makefile index 5f33120..cf8a8df 100644 --- a/makefile +++ b/makefile @@ -1,3 +1,6 @@ all: latex daniel_watson_resume.tex + +clean: + rm -f *.dvi *.pdf *.log diff --git a/daniel_watson_resume.tex b/src/daniel_watson_resume.tex similarity index 100% rename from daniel_watson_resume.tex rename to src/daniel_watson_resume.tex -- 2.30.2