summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/tex/latex/ntabbing/ntabbing.sty
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2010-12-01 00:26:25 +0000
committerKarl Berry <karl@freefriends.org>2010-12-01 00:26:25 +0000
commit05cce89565596e47afe78e10a9dc5809832923db (patch)
tree369cc8468251a0b857fba21451258a1722065aed /Master/texmf-dist/tex/latex/ntabbing/ntabbing.sty
parentf1a94c819a1b45878e3d7098fdcdabcc03950dc1 (diff)
rm ntabbing, noinfo license, email bounce, old
git-svn-id: svn://tug.org/texlive/trunk@20611 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/tex/latex/ntabbing/ntabbing.sty')
-rw-r--r--Master/texmf-dist/tex/latex/ntabbing/ntabbing.sty61
1 files changed, 0 insertions, 61 deletions
diff --git a/Master/texmf-dist/tex/latex/ntabbing/ntabbing.sty b/Master/texmf-dist/tex/latex/ntabbing/ntabbing.sty
deleted file mode 100644
index 0442b58083d..00000000000
--- a/Master/texmf-dist/tex/latex/ntabbing/ntabbing.sty
+++ /dev/null
@@ -1,61 +0,0 @@
-%% This file contains the ntabbing.sty
-%% Written by Gideon Stupp stupp@math.tau.ac.il
-%%
-%% The ntabbing environment is an extension of the tabbing environment.
-%% Two commands added:
-%% \label{} - enumerates the and gives
-%% a reference to the line just like any \label operation.
-%%
-%% \reset - Resets line numbering.
-%%
-\NeedsTeXFormat{LaTeX2e}
- \ProvidesPackage{ntabbing}[2000/03/20 v2.0 tabbing enhancements]
-
-\newcounter{g@linecounter}
-\newbox\g@numbox%
-\newdimen\numboxsize \numboxsize=1.5em%
-\newbox\g@seperator \setbox\g@seperator=\hbox{:}
-
-\gdef\g@setnumbox{
- \refstepcounter{g@linecounter}%
- \global\setbox\g@numbox=\hbox to\numboxsize{\hfil \theg@linecounter\copy\g@seperator\hfil }
-}
-
-% newlabel increments counter and set numbox. Empty labels are not passed to old label.
-\gdef\g@newlabel#1{\g@setnumbox\ifx#1\@empty\else\g@oldlabel{#1}\fi}
-
-% Change tabbing startline to give empty default value to numbox
-\gdef\g@newstartline{\global\setbox\g@numbox=\hbox to\numboxsize{}
- \g@oldstartline}
-
-% Change tabbing stopline to print numbox before current line.
-\gdef\g@newstopline{\unskip\@stopfield\if@rjfield
-\global\@rjfieldfalse
- \@tempdima\@totalleftmargin \advance\@tempdima\linewidth
- \hb@xt@\@tempdima{\@itemfudge\box\g@numbox\hskip\dimen\@curtabmar
- \box\@curline\hfil\box\@curfield}\else\@addfield
- \hbox{\@itemfudge\box\g@numbox\hskip\dimen\@curtabmar\box\@curline}\fi}
-
-%ntabbing environment definition.
-\def\ntabbing{
-
-\def\reset{\setcounter{g@linecounter}{0}}
-
-\let\g@oldstopline=\@stopline
-\let\@stopline=\g@newstopline
-
-\let\g@oldstartline=\@startline
-\let\@startline=\g@newstartline
-
-\let\g@oldlabel=\label
-\let\label=\g@newlabel
-
-\let\g@oldcaption=\caption
-
-% redefine \caption{} to support the old \label
-\def\caption##1{\let\label=\g@oldlabel \g@oldcaption{##1}}
- \tabbing
-
-} % Of ntabbing.
-
-\def\endntabbing {\endtabbing}