summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Master/texmf-dist/doc/latex/ltablex/ltablex.pdfbin250184 -> 0 bytes
-rw-r--r--Master/texmf-dist/doc/latex/ltablex/ltablex.tex181
-rw-r--r--Master/texmf-dist/tex/latex/ltablex/ltablex.sty237
-rwxr-xr-xMaster/tlpkg/bin/tlpkg-ctan-check2
-rwxr-xr-xMaster/tlpkg/libexec/ctan2tds1
-rw-r--r--Master/tlpkg/tlpsrc/ltablex.tlpsrc0
6 files changed, 2 insertions, 419 deletions
diff --git a/Master/texmf-dist/doc/latex/ltablex/ltablex.pdf b/Master/texmf-dist/doc/latex/ltablex/ltablex.pdf
deleted file mode 100644
index de423177077..00000000000
--- a/Master/texmf-dist/doc/latex/ltablex/ltablex.pdf
+++ /dev/null
Binary files differ
diff --git a/Master/texmf-dist/doc/latex/ltablex/ltablex.tex b/Master/texmf-dist/doc/latex/ltablex/ltablex.tex
deleted file mode 100644
index 3fbca9f31b4..00000000000
--- a/Master/texmf-dist/doc/latex/ltablex/ltablex.tex
+++ /dev/null
@@ -1,181 +0,0 @@
-\documentclass[DIV=9, parskip=half, pagesize=auto]{scrartcl}
-
-\usepackage{fixltx2e}
-\usepackage{etex}
-\usepackage{xspace}
-\usepackage{lmodern}
-\usepackage[T1]{fontenc}
-\usepackage{textcomp}
-\usepackage[svgnames]{xcolor}
-\usepackage{listings}
-\usepackage{microtype}
-\usepackage{hyperref}
-
-\newcommand*{\mail}[1]{\href{mailto:#1}{\texttt{#1}}}
-\newcommand*{\pkg}[1]{\textsf{#1}}
-\newcommand*{\cs}[1]{\texttt{\textbackslash#1}}
-\makeatletter
-\newcommand*{\cmd}[1]{\cs{\expandafter\@gobble\string#1}}
-\makeatother
-\newcommand*{\env}[1]{\texttt{#1}}
-
-\addtokomafont{title}{\rmfamily}
-
-\lstset{%
- language=[LaTeX]TeX,%
- columns=flexible,%
- upquote=true,%
- numbers=left,%
- basicstyle=\ttfamily,%
- keywordstyle=\color{Navy},%
- commentstyle=\color{DimGray},%
- stringstyle=\color{SeaGreen},%
- numberstyle=\scriptsize\color{SlateGray}%
-}
-
-\title{The \pkg{ltablex} package\thanks{This manual corresponds to \pkg{ltablex}~v1.0, dated~1995/11/06.}}
-\author{Anil K. Goel (\mail{akgoel@uwaterloo.ca})}
-\date{1995/11/06}
-
-
-\begin{document}
-
-\maketitle
-
-\noindent
-The file modifies the \env{tabularx} environment to
-combine the features of the \pkg{tabularx} package
-(auto-sized columns in a fixed width table)
-with those of the \pkg{longtable} package
-(multi-page tables).
-
-The tables are typeset using the \env{tabularx} environment
-and the \env{longtable} environment is used internally to
-handle multi-page tables. The \cmd{\setlongtables} feature
-is used, and, therefore, the document should be
-run through \texttt{latex} twice.
-
-Another feature that has been added is to treat the \texttt{X}
-columns like `\texttt{l}' columns if the table contents would allow
-that to happen without exceeding the specified width of
-the table. In other words, the specified width is
-treated as the maximum allowed and not the exact width
-of the table. This feature is the default but can be
-disabled (or enabled) with \cmd{\keepXColumns} (or \cmd{\convertXColumns}).
-
-Caveats:
-%
-\begin{itemize}
-\item The document needs to be \texttt{latex}ed a couple times in general.
-\item In general, it is necessary to remove the \texttt{.aux} file before
- the first \texttt{latex} run on the document.
-\item The table should not be larger than \TeX's memory capacity
-\end{itemize}
-
-\bigskip
-
-Here is a a simple usage example:
-%
-\begin{lstlisting}
-\documentclass{article}
-
-\usepackage{ltablex}
-
-\textheight=4in
-
-\begin{document}
-
-% we want a table that is \textwidth long, has 4 columns, columns 1
-% and 3 are auto sized with the 3rd columns being 3 times wider than
-% the first column.
-%
-
-
-\begin{tabularx}{\linewidth}%
- {% col 1; auto-sized ragged right
- |>{\setlength{\hsize}{.5\hsize}\raggedright\arraybackslash}X|%
- % col 2; default centered
- c|%
- % col 3; auto-sized ragged left
- >{\setlength{\hsize}{1.5\hsize}\raggedleft\arraybackslash}X|%
- % col 4; default left-justified
- l|}
-
-\caption*{The Table Caption}\\
-\hline
-F-Head1 & F-Head2 & F-Head3 & F-Head4\\
-\hline
-\hline
-\endfirsthead
-\hline
-Head1 & Head2 & Head3 & Head4\\
-\hline
-\hline
-\endhead
-
-\hline
-\hline
-Foot1 & Foot2 & Foot3 & Foot4\\
-\hline
-\endfoot
-
-
-\hline
-\hline
-L-Foot1 & L-Foot2 & L-Foot3 & L-Foot4\\
-\hline
-\endlastfoot
-
-This is a very long sentence not likely to fit&
-not too long&
-This is another very long sentence not likely to fit&
-not long\\
-
-\hline
-filler & filler & filler & filler\\
-
-\hline
-This is a very long sentence not likely to fit&
-not too long&
-This is another very long sentence not likely to fit&
-not long\\
-
-\hline
-This is a very long sentence not likely to fit&
-not too long&
-This is another very long sentence not likely to fit&
-not long\\
-
-\hline
-This is a very long sentence not likely to fit&
-not too long&
-This is another very long sentence not likely to fit&
-not long\\
-
-\end{tabularx}
-
-\begin{tabularx}{\linewidth}{|c|X|c|}
-\hline
-a &convert X to l & b\\
-\hline
-\end{tabularx}
-
-\keepXColumns
-\begin{tabularx}{\linewidth}{|c|X|c|}
-\hline
-a &retain X & b\\
-\hline
-\end{tabularx}
-
-\convertXColumns
-\begin{tabularx}{\linewidth}{|c|X|c|}
-\hline
-a &convert X to l & b\\
-\hline
-\end{tabularx}
-
-
-\end{document}
-\end{lstlisting}
-
-\end{document}
diff --git a/Master/texmf-dist/tex/latex/ltablex/ltablex.sty b/Master/texmf-dist/tex/latex/ltablex/ltablex.sty
deleted file mode 100644
index 31a084790f7..00000000000
--- a/Master/texmf-dist/tex/latex/ltablex/ltablex.sty
+++ /dev/null
@@ -1,237 +0,0 @@
-%%
-%% This is file ltablex.sty (v1.0, November 1995)
-%%
-%%
-%% Author: Anil K. Goel (akgoel@uwaterloo.ca)
-%%
-%%
-%% Copyright (C) QNX Software Systems Ltd. 1995
-%% All rights reserved.
-%% Please send any comments/suggetions to: latex@qnx.com
-%%
-%% This system is distributed in the hope that it will be useful
-%% to others, but WITHOUT ANY WARRANTY; without even the implied
-%% warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-%%
-%%
-%% The file modifies the tabularx environment to
-%% combine the features of the tabularx package
-%% (auto-sized columns in a fixed width table)
-%% with those of the longtable package
-%% (multi-page tables).
-%%
-%% The tables are typeset using the tabularx environment
-%% and the longtable environment is used internally to
-%% handle multi-page tables. The \setlongtables feature
-%% is used, and, therefore, the document should be
-%% run through latex twice.
-%%
-%% Another feature that has been added is to treat the X
-%% columns like 'l' columns if the table contents would allow
-%% that to happen without exceeding the specified width of
-%% the table. In other words, the specified width is
-%% treated as the maximum allowed and not the exact width
-%% of the table. This feature is the default but can be
-%% disabled (or enabled) with \keepXColumns (or \convertXColumns).
-%%
-%% Caveats:
-%% . The document needs to be latexed a couple times in general.
-%% . In general, it is necessary to remove the .aux file before
-%% the first latex run on the document.
-%% . The table should not be larger than TeX's memory capacity
-%%
-%%
-%% Here is a a simple usage example:
-%%
-%%
-%% \documentclass{article}
-%%
-%% \usepackage{ltablex}
-%%
-%% \textheight=4in
-%%
-%% \begin{document}
-%%
-%% % we want a table that is \textwidth long, has 4 columns, columns 1
-%% % and 3 are auto sized with the 3rd columns being 3 times wider than
-%% % the first column.
-%% %
-%%
-%%
-%% \begin{tabularx}{\linewidth}%
-%% {|>{\setlength{\hsize}{.5\hsize}\raggedright\arraybackslash}X| % col 1; auto-sized ragged right
-%% c| % col 2; default centered
-%% >{\setlength{\hsize}{1.5\hsize}\raggedleft\arraybackslash}X|% col 3; auto-sized ragged left
-%% l|} % col 4; default left-justified
-%%
-%% \caption*{The Table Caption}\\
-%% \hline
-%% F-Head1 & F-Head2 & F-Head3 & F-Head4\\
-%% \hline
-%% \hline
-%% \endfirsthead
-%% \hline
-%% Head1 & Head2 & Head3 & Head4\\
-%% \hline
-%% \hline
-%% \endhead
-%%
-%% \hline
-%% \hline
-%% Foot1 & Foot2 & Foot3 & Foot4\\
-%% \hline
-%% \endfoot
-%%
-%%
-%% \hline
-%% \hline
-%% L-Foot1 & L-Foot2 & L-Foot3 & L-Foot4\\
-%% \hline
-%% \endlastfoot
-%%
-%% This is a very long sentence not likely to fit&
-%% not too long&
-%% This is another very long sentence not likely to fit&
-%% not long\\
-%%
-%% \hline
-%% filler & filler & filler & filler\\
-%%
-%% \hline
-%% This is a very long sentence not likely to fit&
-%% not too long&
-%% This is another very long sentence not likely to fit&
-%% not long\\
-%%
-%% \hline
-%% This is a very long sentence not likely to fit&
-%% not too long&
-%% This is another very long sentence not likely to fit&
-%% not long\\
-%%
-%% \hline
-%% This is a very long sentence not likely to fit&
-%% not too long&
-%% This is another very long sentence not likely to fit&
-%% not long\\
-%%
-%% \end{tabularx}
-%%
-%% \begin{tabularx}{\linewidth}{|c|X|c|}
-%% \hline
-%% a &convert X to l & b\\
-%% \hline
-%% \end{tabularx}
-%%
-%% \keepXColumns
-%% \begin{tabularx}{\linewidth}{|c|X|c|}
-%% \hline
-%% a &retain X & b\\
-%% \hline
-%% \end{tabularx}
-%%
-%% \convertXColumns
-%% \begin{tabularx}{\linewidth}{|c|X|c|}
-%% \hline
-%% a &convert X to l & b\\
-%% \hline
-%% \end{tabularx}
-%%
-%%
-%% \end{document}
-
-\NeedsTeXFormat{LaTeX2e}
-\ProvidesPackage{ltablex}[1995/11/06 v1.0 Modified tabularx]
-
-\RequirePackage{longtable}[1994/12/08]
-\RequirePackage{tabularx}[1994/02/03]
-
-\newif\ifTX@convertX@
-\TX@convertX@true
-
-\newcommand\keepXColumns{
- \TX@convertX@false
-}
-
-\newcommand\convertXColumns{
- \TX@convertX@true
-}
-
-\renewcommand\TX@endtabularx{%
- \expandafter\TX@newcol\expandafter{\tabularxcolumn{\TX@col@width}}%
- \let\verb\TX@verb
- \def\@elt##1{\global\value{##1}\the\value{##1}\relax}%
- \edef\TX@ckpt{\cl@@ckpt}%
- \let\@elt\relax
- \TX@old@table=\maxdimen
- \TX@col@width=\TX@target
- \global\TX@cols=\@ne
- \TX@typeout@
- {\@spaces Table Width\@spaces Column Width\@spaces X Columns}%
-
- %
- % define \endhead, etc. to be \\ so that in this part
- % of the process they are just rows
- %
- \let\savecaption\caption
- \def\caption{\\}
- \let\saveendhead\endhead
- \def\endhead{\\}
- \let\saveendfirsthead\endfirsthead
- \def\endfirsthead{\\}
- \let\saveendfoot\endfoot
- \def\endfoot{\\}
- \let\saveendlastfoot\endlastfoot
- \def\endlastfoot{\\}
- %
- %
- \ifTX@convertX@
- \TX@trial{\def\NC@rewrite@X{\NC@find l}}
- \ifdim\wd\@tempboxa<\TX@target
- \TX@newcol{l}
- \else
- \TX@convertX@false
- \fi
- \fi
-
- \ifTX@convertX@
- \relax
- \else
- \TX@trial{\def\NC@rewrite@X{%
- \global\advance\TX@cols\@ne\NC@find p{\TX@col@width}}}%
- \loop
- \TX@arith
- \ifTX@
- \TX@trial{}%
- \repeat
- \fi
- {\let\@footnotetext\TX@ftntext\let\@xfootnotenext\TX@xftntext
- % we may as well set \LTchunksize to be \maxdimen as the whole
- % thing is already in memory anyway so we may as well do it in one
- % chunk. if it is too big for one chunk we are already dead..
- \LTchunksize\maxdimen
- %
- % restore \endhead, etc.
- %
- \let\caption\savecaption
- \let\endhead\saveendhead
- \let\endfirsthead\saveendfirsthead
- \let\endfoot\saveendfoot
- \let\endlastfoot\saveendlastfoot
- %
- \expandafter\longtable
- \the\toks@
- \endlongtable
- }%
- \global\TX@ftn\expandafter{\expandafter}\the\TX@ftn
- \ifnum0=`{\fi}%
- \end{tabularx}
-}
-
-
-%
-% activate column width reading from the .aux file
-%
-
-
-\setlongtables
diff --git a/Master/tlpkg/bin/tlpkg-ctan-check b/Master/tlpkg/bin/tlpkg-ctan-check
index a0c8ccede17..1ec4d623d3d 100755
--- a/Master/tlpkg/bin/tlpkg-ctan-check
+++ b/Master/tlpkg/bin/tlpkg-ctan-check
@@ -184,7 +184,7 @@ my @TLP_working = qw(
lshort-japanese lshort-korean lshort-mongol lshort-persian
lshort-polish lshort-portuguese lshort-slovak lshort-slovenian
lshort-spanish lshort-thai lshort-turkish lshort-ukr
- lshort-vietnamese ltablex ltabptch
+ lshort-vietnamese ltabptch
ltxdockit ltxindex ltxmisc ltxnew
lua-alt-getopt
luainputenc lualibs luamplib luaotfload luatexbase luatextra
diff --git a/Master/tlpkg/libexec/ctan2tds b/Master/tlpkg/libexec/ctan2tds
index bb88603c260..7fa29e7b8a1 100755
--- a/Master/tlpkg/libexec/ctan2tds
+++ b/Master/tlpkg/libexec/ctan2tds
@@ -381,6 +381,7 @@ $Master = "$mydir/../..";
'lshort-turkish', '&MAKElshort',
'lshort-vietnamese', '&MAKElshort',
'lshort-zh-cn', "die 'skipping, use lshort-chinese'",
+ 'ltablex', "die 'skipping, unknown license'",
'ltt', "&MAKEltt",
'ltxbase', "&MAKEbase",
'ltxmisc', "die 'skipping, too complicated, sorry'",
diff --git a/Master/tlpkg/tlpsrc/ltablex.tlpsrc b/Master/tlpkg/tlpsrc/ltablex.tlpsrc
deleted file mode 100644
index e69de29bb2d..00000000000
--- a/Master/tlpkg/tlpsrc/ltablex.tlpsrc
+++ /dev/null