summaryrefslogtreecommitdiff
path: root/Master
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
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')
-rw-r--r--Master/texmf-dist/doc/latex/ntabbing/ntabbing.dvibin4132 -> 0 bytes
-rw-r--r--Master/texmf-dist/doc/latex/ntabbing/ntabbing.tex84
-rw-r--r--Master/texmf-dist/tex/latex/ntabbing/ntabbing.sty61
-rwxr-xr-xMaster/tlpkg/libexec/ctan2tds1
-rw-r--r--Master/tlpkg/tlpsrc/collection-latexextra.tlpsrc1
-rw-r--r--Master/tlpkg/tlpsrc/ntabbing.tlpsrc0
6 files changed, 1 insertions, 146 deletions
diff --git a/Master/texmf-dist/doc/latex/ntabbing/ntabbing.dvi b/Master/texmf-dist/doc/latex/ntabbing/ntabbing.dvi
deleted file mode 100644
index 197287c3aef..00000000000
--- a/Master/texmf-dist/doc/latex/ntabbing/ntabbing.dvi
+++ /dev/null
Binary files differ
diff --git a/Master/texmf-dist/doc/latex/ntabbing/ntabbing.tex b/Master/texmf-dist/doc/latex/ntabbing/ntabbing.tex
deleted file mode 100644
index 20efd02190b..00000000000
--- a/Master/texmf-dist/doc/latex/ntabbing/ntabbing.tex
+++ /dev/null
@@ -1,84 +0,0 @@
-\documentclass{article}
-\usepackage{ntabbing,float}
-\floatstyle{boxed}
-\newfloat{fig}{bt}{fig}
-\floatname{fig}{Figure}
-
-\begin{document}
-\title{The {\tt ntabbing} environment\thanks{The latest version of this file and the associated latex style can be found at
-{\tt ftp://ftp.math.tau.ac.il/pub/stupp/latex}.}}
-\author{Gideon Stupp\\ {\tt stupp@math.tau.ac.il}}
-
-\date{April 9, 2000}
-\maketitle
-\begin{abstract}
-The {\tt ntabbing} environment is an extension of the {\tt
-tabbing} environment that supports automatic line numbering. The
-lines can be referenced using the standard {\tt \string\label}
-and {\tt\string\ref} mechanism.
-\end{abstract}
-
-\section{Intorduction}
-
-\begin{fig}
-\begin{verbatim}
- Recursion example (Function $f$, Line~\ref{rec}).
-\begin{ntabbing}
-123\=123\=\kill
-int $f$(int $i$)\\
-\>if ($i<2$) return($i$); \label{}\\
-\>return $i$*$f$($i-1$); // recurse\label{rec}\\
-\\
-\reset
- int main()\\\
- \>for $i$:=1 to 10\label{}\\
- \>\>$s:=s+f(i)$;\label{}\\
- \>return(s);\label{}\\
-\end{ntabbing}
-
-\end{verbatim}
- Recursion example (Function $f$, Line~\ref{rec}).
-\begin{ntabbing}
-123\=123\=\kill
-int $f$(int $i$)\\
-\>if ($i<2$) return($i$); \label{}\\
-\>return $i$*$f$($i-1$); // recurse\label{rec}\\
-\\
-\reset
- int main()\\\
- \>for $i$:=1 to 10\label{}\\
- \>\>$s:=s+f(i)$;\label{}\\
- \>return(s);\label{}\\
-\end{ntabbing}
-\caption{Simple {\tt ntabbing} example.\label{fig1}}
-\end{fig}
-
-Figure~\ref{fig1} shows an {\tt ntabbing} environment example and
-its corresponding latex output. Every line inside the {\tt
-ntabbing} environment which is labeled is automatically numbered.
-The lines can be referenced from within the environment or from
-the outside. If a line just needs to be numbered, {\tt
-\string\label\{\}} can be used. Line numbers can be reset back to
-one at any point using the {\tt\string\reset} command (line
-numbering continues across {\tt ntabbing} environments)
-
-\section{User Interface}
-\reversemarginpar
- \marginpar{{\tt\string\begin\{ntabbing\}}\\{\tt\string\end\{ntabbing\}}}
- The text that needs to be numbered should start with {\tt\string\begin\{ntabbing\}}
- and end with {\tt\string\end\{ntabbing\}}. The {\tt ntabbing} environment is an
- extension of the {\tt tabbing} environment and all the tabbing
- commands are supported.
-\\\\\marginpar{{\tt\string\label\{\}}}
- The {\tt\string\label\{\}} command automatically numbers the line with the
- current sequence number. It can appear at any point in a line up to the {\tt\string\\}.
-\\\\\marginpar{{\tt\string\label\{xxx\}}}
- Like {\tt\string\label\{\}} but the line can be referenced using
- {\tt\string\ref\{xxx\}}.
-\\\\\marginpar{{\tt\string\reset}}
- Resets line numbering. Line numbers can be reset several times in
- the environment. Notice that line numbers are {\em
- not} automatically reset at the beginning of every {\tt
- ntabbing} block.
-
-\end{document}
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}
diff --git a/Master/tlpkg/libexec/ctan2tds b/Master/tlpkg/libexec/ctan2tds
index 51fabbbc9ff..59f02378332 100755
--- a/Master/tlpkg/libexec/ctan2tds
+++ b/Master/tlpkg/libexec/ctan2tds
@@ -505,6 +505,7 @@ $Master = "$mydir/../..";
'nohyph', "die 'skipping, nohyph must be done by hand'",
'norasi-c90', "&MAKEnorasi_c90",
'notes', "&MAKEnotes",
+ 'ntabbing', "die 'skipping, noinfo license, author email bad'",
'ntg', "die 'skipping, ntg is stale user group information'",
'numericplots',"&MAKEflatten",
'numline', "die 'skipping, obsolete'",
diff --git a/Master/tlpkg/tlpsrc/collection-latexextra.tlpsrc b/Master/tlpkg/tlpsrc/collection-latexextra.tlpsrc
index f1c54a92481..62a2299e908 100644
--- a/Master/tlpkg/tlpsrc/collection-latexextra.tlpsrc
+++ b/Master/tlpkg/tlpsrc/collection-latexextra.tlpsrc
@@ -431,7 +431,6 @@ depend nonfloat
depend nopageno
depend notes
depend notoccite
-depend ntabbing
depend ntheorem
depend numname
depend numprint
diff --git a/Master/tlpkg/tlpsrc/ntabbing.tlpsrc b/Master/tlpkg/tlpsrc/ntabbing.tlpsrc
deleted file mode 100644
index e69de29bb2d..00000000000
--- a/Master/tlpkg/tlpsrc/ntabbing.tlpsrc
+++ /dev/null