summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/tex/latex
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2010-12-18 16:49:19 +0000
committerKarl Berry <karl@freefriends.org>2010-12-18 16:49:19 +0000
commitcb874824436f6de80f79164f3d9d96be7d02ab4d (patch)
tree2601ade0b5c6aff057053aaa47990469d62606e7 /Master/texmf-dist/tex/latex
parent92782b8e0e629b8a1f47ea59ea05ce4114a8dde7 (diff)
rm sprite, noinfo license, c.1994
git-svn-id: svn://tug.org/texlive/trunk@20790 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/tex/latex')
-rw-r--r--Master/texmf-dist/tex/latex/sprite/sprite.sty39
1 files changed, 0 insertions, 39 deletions
diff --git a/Master/texmf-dist/tex/latex/sprite/sprite.sty b/Master/texmf-dist/tex/latex/sprite/sprite.sty
deleted file mode 100644
index 849434fe8a9..00000000000
--- a/Master/texmf-dist/tex/latex/sprite/sprite.sty
+++ /dev/null
@@ -1,39 +0,0 @@
-%%%%%%%%%%%%% SPRITE.STY %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-%% LaTeX style option SPRITE.STY ( Martin Costabel 27-Oct-1987 )
-%% Use: \documentstyle[...,sprite,...]{...}
-%\makeatletter %use this if you \input{sprite.sty}
-%% New command:
-%%
-%% \sprite{cmd}(lins,cols)[wdth,hght] pixels \endsprite
-%%
-%% Here:
-%% cmd is a command sequence which is afterwards the name of the new object.
-%% It is defined as \usebox{cmd@box}, so there is also a new box cmd@box.
-%% wdth and hght are the width and height of the new object.
-%% pixels is a sequence of lins lines, each of which starts with a `:'(colon),
-%% ends with a `|'(vertical bar), and contains cols pixels which are
-%% either a `.'(period, meaning a white pixel) or a `B'(capital B, meaning
-%% a black pixel). Blank spaces are ignored.
-%%
-\newlength{\@pxlwd} \newlength{\@rulewd} \newlength{\@pxlht}
-\catcode`.=\active \catcode`B=\active \catcode`:=\active \catcode`|=\active
-\def\sprite#1(#2,#3)[#4,#5]{
- \edef\@sprbox{\expandafter\@cdr\string#1\@nil @box}
- \expandafter\newsavebox\csname\@sprbox\endcsname
- \edef#1{\expandafter\usebox\csname\@sprbox\endcsname}
- \expandafter\setbox\csname\@sprbox\endcsname =\hbox\bgroup
- \vbox\bgroup
- \catcode`.=\active\catcode`B=\active\catcode`:=\active\catcode`|=\active
- \@pxlwd=#4 \divide\@pxlwd by #3 \@rulewd=\@pxlwd
- \@pxlht=#5 \divide\@pxlht by #2
- \def .{\hskip \@pxlwd \ignorespaces}
- \def B{\@ifnextchar B{\advance\@rulewd by \@pxlwd}{\vrule
- height \@pxlht width \@rulewd depth 0 pt \@rulewd=\@pxlwd}}
- \def :{\hbox\bgroup\vrule height \@pxlht width 0pt depth 0pt\ignorespaces}
- \def |{\vrule height \@pxlht width 0pt depth 0pt\egroup
- \prevdepth= -1000 pt}
- }
-\def\endsprite{\egroup\egroup}
-\catcode`.=12 \catcode`B=11 \catcode`:=12 \catcode`|=12\relax
-%\makeatother %use this if you \input{sprite.sty}
-%%%%%%%%%%% End of SPRITE.STY %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%