[336] in SIPB bug reports
LaTeX: resume.sty
daemon@ATHENA.MIT.EDU (daemon@ATHENA.MIT.EDU)
Sun Feb 26 17:33:10 1989
Date: Sun, 26 Feb 89 17:30 EST
From: Paul Krause <pfkrause@WHEATIES.AI.MIT.EDU>
To: Jonathan I. Kamens <jik@ATHENA.MIT.EDU>
Cc: pfkrause@WHEATIES.AI.MIT.EDU, bug-sipb@ATHENA.MIT.EDU
In-Reply-To: <8902262220.AA03089@PIT-MANAGER.MIT.EDU>
Date: Sun, 26 Feb 89 17:20:49 EST
From: Jonathan I. Kamens <jik@athena.mit.edu>
Date: Sun, 26 Feb 89 16:54 EST
From: Paul Krause <pfkrause@WHEATIES.AI.MIT.EDU>
Say, are you guys aware that there's now a resume.sty, written by
Stephen Gildea? It doesn't seem to be listed in /mit/sipb/tex/macros.
I have some problems with it, but I'll bet you could use it to make a
new /mit/sipb/prototype/resume.tex that first time users will have a
much easier time figuring out.
-paul
I seem to recall hearing some SIPB member mumbling about somebody on
the net taking our resume.tex stuff, turning it into a .sty file, and
releasing it to the world-at-large without crediting SIPB. Is this
the same person and .sty file?
jik
I don't think so. Here is Gildea's file--it doesn't seem to have much
in common with ambar's:
% resume.sty 02 Sep 88
% style option for formatting resumes.
% This style option is designed to work with the article document
% style of LaTeX version 2.09. Use
% \documentstyle[resume]{article}
% Copyright (c) 1987 by Stephen Gildea
% Permission to copy all or part of this work is granted, provided
% that the copies are not made or distributed for resale, and that
% the copyright notice and this notice are retained.
%
% THIS WORK IS PROVIDED ON AN "AS IS" BASIS. THE AUTHOR PROVIDES NO
% WARRANTY WHATSOEVER, EITHER EXPRESS OR IMPLIED, REGARDING THE WORK,
% INCLUDING WARRANTIES WITH RESPECT TO ITS MERCHANTABILITY OR FITNESS
% FOR ANY PARTICULAR PURPOSE.
% If you make any improvements, I'd like to hear about them.
% Stephen Gildea
% MIT Earth Resources Lab
% Cambridge, Mass. 02139
% mit-erl!gildea
% gildea@erl.mit.edu
% 23 May 87 version 1
% 08 Jun 88 center single \address lines
% 02 Sep 88 enhancement to \employer from Jerry Leichter
% LEICHTER-JERRY@CS.YALE.EDU or <LEICHTER@Venus.YCC.Yale.Edu>
\topmargin 0pt
\headheight 0pt
\headsep 0pt
\textheight 9in
\pagestyle{empty}
\parindent 0pt
\parskip \baselineskip
\topmargin 0in
\oddsidemargin 0in
\evensidemargin 0in
\textwidth 6.5in
\setcounter{secnumdepth}{0}
% use this to print your name at the top of the page
\def\name#1{{\large\centering#1\\[2\baselineskip]}}
% one address
\def\address#1{{\centering #1\par}}
% two addresses (say, home and work). They get printed side by side
\def\addresses#1#2{\hbox to \hsize{\@tablebox{#1}\hfil\@tablebox{#2}}}
\def\@tablebox#1{\begin{tabular}[t]{@{}l@{}}#1\end{tabular}}
\newbox\@title
% Most of the resume goes inside a llist environment. Within it, use
% the \sectiontitle{title} command to begin new sections. The title
% of the section is put in the left margin. The section text begins
% on the next line if the sectiontitle is too long.
\newenvironment{llist}{\begin{list}{}{\setlength
\labelwidth{1in}\setlength\leftmargin{\labelwidth}\addtolength
\leftmargin{\labelsep}\itemsep 5pt plus 2pt minus 2pt
\parsep 10pt plus 2pt minus 2pt
\def\sectiontitle##1{\item[{\bf##1}]\setbox\@title=\hbox{\bf##1}\ifdim
\wd\@title>\labelwidth \leavevmode \\* \else \fi}
\def\makelabel##1{##1\hfill}}}{\end{list}}
% like itemize but bullets are at the left margin
\newenvironment{items}{\begin{list}{$\bullet$}
{\setlength\labelwidth{.5em}\setlength\leftmargin{1em}
\def\makelabel##1{##1\hfill}}}{\end{list}}
% Use the \employer and \location commands to print the names and
% cities of your employers. \employer always starts a new paragraph,
% and should be followed by \location.
%
% \employer* is like \employer but is used for additional information
% about the employer. It does NOT start a new paragraph, must
% NOT be followed by \location, and always forces a new line after itself.
\def\employer{\@ifstar{\@semployer}{\@employer}}
\def\@employer#1{\par{\sc #1}}
\def\@semployer#1{{\sc #1}\\}
% The location is always flush right. It is moved to the next
% line if there is not room left on this one.
% See the TeXbook Chapter 14.
\def\location#1{{\unskip\nobreak\hfill\penalty50\hskip2em
\hbox{}\nobreak\hfill \hbox{#1}\finalhyphendemerits=0 \\}}
% This prints the date flush left.
% The major shortcoming of this file:
% There needs to be an option to print the date in the left margin,
% because many people like to do it that way.
\def\dates#1{#1\\[2pt]}
\bye