From d033dd6b59e70d2daf205b3a285f3aad2228b96f Mon Sep 17 00:00:00 2001 From: Karl Berry Date: Mon, 19 Sep 2011 23:49:02 +0000 Subject: new latex package tabfigures (19sep11) git-svn-id: svn://tug.org/texlive/trunk@24025 c570f23f-e606-0410-a88d-b1316a301751 --- Master/texmf-dist/doc/latex/tabfigures/README | 55 +++ .../texmf-dist/doc/latex/tabfigures/tabfigures.pdf | Bin 0 -> 244046 bytes .../source/latex/tabfigures/tabfigures.dtx | 406 +++++++++++++++++++++ .../source/latex/tabfigures/tabfigures.ins | 55 +++ .../texmf-dist/tex/latex/tabfigures/tabfigures.sty | 132 +++++++ Master/tlpkg/bin/tlpkg-ctan-check | 2 +- Master/tlpkg/tlpsrc/collection-latexextra.tlpsrc | 1 + Master/tlpkg/tlpsrc/tabfigures.tlpsrc | 0 8 files changed, 650 insertions(+), 1 deletion(-) create mode 100644 Master/texmf-dist/doc/latex/tabfigures/README create mode 100644 Master/texmf-dist/doc/latex/tabfigures/tabfigures.pdf create mode 100644 Master/texmf-dist/source/latex/tabfigures/tabfigures.dtx create mode 100644 Master/texmf-dist/source/latex/tabfigures/tabfigures.ins create mode 100644 Master/texmf-dist/tex/latex/tabfigures/tabfigures.sty create mode 100644 Master/tlpkg/tlpsrc/tabfigures.tlpsrc diff --git a/Master/texmf-dist/doc/latex/tabfigures/README b/Master/texmf-dist/doc/latex/tabfigures/README new file mode 100644 index 00000000000..8dc84f2d406 --- /dev/null +++ b/Master/texmf-dist/doc/latex/tabfigures/README @@ -0,0 +1,55 @@ +tabfigures - Using tabular figures with LaTeX +============================================= + +The tabfigures package is a collection of patches for using +tabular figures in some LaTeX environments where numbers should +line up vertically such as the table of contents and enumerations. + +Usage +----- + +To use this package, include + + \usepackage[]{tabfigures} + +in the preamble of your LaTeX document. See the PDF documentation for +the available options and other details. + +Installation +------------ + +1. Run `latex tabfigures.ins` to generate the LaTeX package. + +2. Create the following directories in a local texmf tree: + + - doc/latex/tabfigures + - tex/latex/tabfigures + +3. Copy all necessary files into the texmf tree: + + - tabfigures.pdf goes to doc/latex/tabfigures + - tabfigures.sty goes to tex/latex/tabfigures + +4. Afterwards, you may need to regenerate the file database: + + texhash + +License +------- + +Copyright (c) 2007 by Andreas Bühmann +Copyright (c) 2011 by Michael Ummels + +This work may be distributed and modified under the terms and conditions of the +LaTeX Project Public License, version 1.3c or greater (your choice). +The latest version of this license is in + http://www.latex-project.org/lppl.txt +and version 1.3 or later is part of all distributions of LaTeX +version 2005/12/01 or later. + +This work has the LPPL maintenance status `maintained'. + +The Current Maintainer of this work is Michael Ummels. + +This work consists of the files tabfigures.dtx, tabfigures.ins and +the derived files tabfigures.sty and tabfigures.pdf. diff --git a/Master/texmf-dist/doc/latex/tabfigures/tabfigures.pdf b/Master/texmf-dist/doc/latex/tabfigures/tabfigures.pdf new file mode 100644 index 00000000000..b8e9935f25b Binary files /dev/null and b/Master/texmf-dist/doc/latex/tabfigures/tabfigures.pdf differ diff --git a/Master/texmf-dist/source/latex/tabfigures/tabfigures.dtx b/Master/texmf-dist/source/latex/tabfigures/tabfigures.dtx new file mode 100644 index 00000000000..a993d731931 --- /dev/null +++ b/Master/texmf-dist/source/latex/tabfigures/tabfigures.dtx @@ -0,0 +1,406 @@ +% \iffalse meta-comment +% +% Copyright (c) 2007 by Andreas B\"uhmann +% Copyright (c) 2011 by Michael Ummels +% +% This work may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.3c +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.3 or later is part of all distributions of LaTeX +% version 2005/12/01 or later. +% +% This work has the LPPL maintenance status `maintained'. +% +% The Current Maintainer of this work is Michael Ummels. +% +% This work consists of the files tabfigures.dtx, tabfigures.ins and +% the derived files tabfigures.sty and tabfigures.pdf. +% +% \fi +% +%\iffalse +%<*driver> +\ProvidesFile{tabfigures.dtx}[2011/09/17 v1.0 Patches for using tabular figures] +% +%\NeedsTeXFormat{LaTeX2e} +%\ProvidesPackage{tabfigures}[2011/09/17 v1.0 Patches for using tabular figures] +%<*driver> +\documentclass[fleqn]{ltxdoc} + +\usepackage[T1]{fontenc} +\IfFileExists{MinionPro.sty}{ + \usepackage[smallfamily]{MinionPro} + \usepackage[scaled=0.8]{berasans} + \usepackage[scaled=0.8]{beramono} +}{ + \usepackage{lmodern} +} +\usepackage[toc,eqno,enum,bib,lineno,debug]{tabfigures} +\usepackage[fleqn]{mathtools} +\usepackage{array} +\usepackage{hyperref} +\usepackage{microtype} + +\hypersetup{ + bookmarksnumbered, + colorlinks=false, + pdfborder={0 0 0}, + pdftitle={Using tabular figures with LaTeX}, + pdfauthor={Andreas B\"uhmann, Michael Ummels} +} + +% markup +\newcommand*\pkg[1]{\textsf{#1}} +\let\cls\pkg +\let\bst\pkg + +\makeatletter +\let\Tf\tabfig@font +\makeatother + +\newenvironment{sample}{% + \begin{trivlist}% + \item +}{% + \end{trivlist}% +} + +\begin{document} +\DocInput{tabfigures.dtx} +\end{document} +% +%<*doc> +%\fi +% +% \CheckSum{184} +% \CharacterTable +% {Upper-case \A\B\C\D\E\F\G\H\I\J\K\L\M\N\O\P\Q\R\S\T\U\V\W\X\Y\Z +% Lower-case \a\b\c\d\e\f\g\h\i\j\k\l\m\n\o\p\q\r\s\t\u\v\w\x\y\z +% Digits \0\1\2\3\4\5\6\7\8\9 +% Exclamation \! Double quote \" Hash (number) \# +% Dollar \$ Percent \% Ampersand \& +% Acute accent \' Left paren \( Right paren \) +% Asterisk \* Plus \+ Comma \, +% Minus \- Point \. Solidus \/ +% Colon \: Semicolon \; Less than \< +% Equals \= Greater than \> Question mark \? +% Commercial at \@ Left bracket \[ Backslash \\ +% Right bracket \] Circumflex \^ Underscore \_ +% Grave accent \` Left brace \{ Vertical bar \| +% Right brace \} Tilde \~} +% +% \GetFileInfo{tabfigures.dtx} +% +% \title{Using tabular figures with \LaTeX} +% \author{Andreas B\"uhmann \and Michael Ummels} +% \date{\fileversion\ -- \filedate} +% \maketitle +% +% \begin{abstract} +% The \pkg{tabfigures} package is a collection of patches for using +% tabular figures in some LaTeX environments where numbers should +% line up vertically such as the table of contents and enumerations. +% \end{abstract} +% +% +% \section{Introduction} +% +% Traditionally, there has been no distinction between proportional +% figures (\proportionalfigures{0123456789}) and tabular figures% +% \marginpar{% +% \raggedleft\LARGE +% \begin{tabular}[t]{r>{\Tf}r} +% 51 & 51 \\ +% 60 & 60 \\ +% \end{tabular} +% } ({\Tf 0123456789}) in \LaTeX. Effectively, the fonts commonly in use +% with \LaTeX\ only include figures of uniform width. This is why, with fonts +% like Minion Pro, which use proportional figures by default, you +% have to specifically adapt your document class or even the \LaTeX\ +% kernel to employ tabular figures in the right places: +% the table of contents, enumerations and other material where +% numbers should line up vertically. The \pkg{tabfigures} package tries +% to assist you in the most common situations. +% Throughout this document, tabular figures are colored +% \textcolor{green!50!black}{green}. +% +% \section{Usage} +% +% This package is a collection of patches that inject +% |\tbfigures| into the involved formatting commands in +% the right places. You can load this package by putting +% \begin{quote} +% |\usepackage|\oarg{options}|{tabfigures}| +% \end{quote} +% in the preamble of your document. The options, which are described +% in the next sections, control which patches are used. (If no options are +% specified, the package has no effect.) +% +% To have any effect, this package relies on the existence of a command +% |\tbfigures| to switch to tabular figures. For instance, the +% \pkg{MinionPro} package defines this command. (More precisely, +% the \pkg{fontaxes} package, which is included by \pkg{MinionPro}, +% defines this command). +% +% \section{Options} +% +% \DescribeMacro{toc} +% The \hyperdef{sample}{toc}{|toc|} option controls whether +% tabular figures are used for the numbering and page numbers in the +% table of contents, the list of tables/figures, and similar lists. +% \begin{sample} +% \contentsline{section}{% +% \numberline{4}Moving Information Around}{65}{sample.toc} % +% \contentsline{subsection}{% +% \numberline{4.1}The Table of Contents}{66}{sample.toc} % +% \contentsline{subsection}{% +% \numberline{4.2}Cross-References}{67}{sample.toc} % +% \end{sample} +% +% \noindent\DescribeMacro{eqno} +% The |eqno| option enables tabular figures in equation numbers. +% \begin{sample} +% \setlength{\abovedisplayskip}{0pt}% +% \setlength{\belowdisplayskip}{0pt}% +% \setcounter{equation}{18}% +% \begin{align} +% x&=y & X&=Y & a&=b+c\\ +% x'&=y' & X'&=Y' & a'&=b\\ +% x+x'&=y+y' & X+X'&=Y+Y' & a'b&=c'b +% \end{align} +% \end{sample} +% +% \noindent\DescribeMacro{enum} +% The |enum| option turns on tabular figures in enumerations. +% \begin{sample} +% \begin{enumerate} \setcounter{enumi}{38} +% \item The world's fastest supercomputer will have its speed +% measured in ``petaflops'', which represent 1,000 trillion +% calculations per second. +% \item The medical name for the part of the brain associated with +% teenage sulking is ``superior temporal sulcus''. +% \item Some Royal Mail stamps, which of course carry the Queen's +% image, are printed in Holland. +% \end{enumerate} +% \end{sample} +% +% \noindent\DescribeMacro{bib} +% The |bib| option activates tabular figures for the labels in the bibliography. +% \begin{sample} +% \renewcommand\section[2]{}% +% \begin{thebibliography}{99} +% \bibitem[19]{b19} Leslie Lamport. \LaTeX: A Document Preparation +% System. Addison-Wesley, Reading, MA, 2nd Edition, 1994. +% \bibitem[20]{b20} American Mathematical Society. User's Guide +% for the \pkg{amsmath} Package (Version 2.0). Revised, 2002. +% \bibitem[21]{b21} BBC News. +% \href{http://www.bbc.co.uk/blogs/magazinemonitor/2006/12/100_things_we_didnt_know_last_2.shtml}% +% {100 Things We Didn't Know Last Year.} 28 December 2006. +% \end{thebibliography} +% \end{sample} +% (The previous examples have been taken from these sources.) +% \medskip +% +% \noindent\DescribeMacro{lineno} +% The |lineno| option enables tabular figures for line numbers. +% Only the \pkg{doc} package is supported for now; support for other +% line-numbering packages is planned. +% \setcounter{CodelineNo}{48}% +% \begin{macrocode} +\DeclareOption{eqno}{% + \AtBeginDocument{% + \@ifpackageloaded{amsmath}{% +% \end{macrocode} +% +% \section{Compatibility} +% +% This package has been designed to work with the default settings of +% the standard document classes \cls{article}, \cls{report} and +% \cls{book}, their \pkg{KOMA-Script} counterparts, the \cls{memoir} +% class, the \pkg{amsmath} package, and the standard bibliographic +% styles \bst{numeric} and \bst{alphabetic} of \pkg{biblatex} v0.6a. +% +% \StopEventually +% +% \iffalse +% +% \fi +% +% \section{Implementation} +% +% \global\setcounter{CodelineNo}{0} +% Ease patching of commands. We store the original meaning of |\cmd| +% in a safe place and access it later (in the redefinition) with +% |\tabfig@\cmd|. +% \begin{macrocode} +%<*package> +\newcommand*\tabfig@@[1]{tabfig@@\expandafter\@cdr\string #1\@nil} +\newcommand*\tabfig@[1]{\csname \tabfig@@{#1}\endcsname} +\newcommand*\tabfig@name{} +\newcommand*\tabfig@save[1]{% + \edef\tabfig@name{\expandafter\expandafter\expandafter + \noexpand\tabfig@{#1}}% + \expandafter\newcommand\tabfig@name{}% + \expandafter\let\tabfig@name #1% +} +% \end{macrocode} +% Just a shorthand. +% \begin{macrocode} +\newcommand*\tabfig@def[1]{% + \tabfig@save{#1}% + \def#1% +} +% \end{macrocode} +% Patch |\l@|\meta{level} commands. These commands always take two +% arguments, the second of which is the page number. +% \begin{macrocode} +\newcommand*\tabfig@pname{} +\newcommand*\tabfig@patch@l[1]{% + \@ifundefined{l@#1}{}{% + \edef\tabfig@pname{\expandafter\noexpand\csname l@#1\endcsname}% + \expandafter\tabfig@save\tabfig@pname + \expandafter\edef\tabfig@pname##1##2{% + \noexpand\tabfig@ + \expandafter\noexpand\tabfig@pname + {##1}{\noexpand\tabfig@font ##2}% + }% + }% +} +% \end{macrocode} +% Debugging. +% \begin{macrocode} +\newif\iftabfig@debug \tabfig@debugfalse +\DeclareOption{debug}{\tabfig@debugtrue} +% \end{macrocode} +% +% \subsection{Equation numbers} +% We distinguish between the two most frequent cases: \pkg{amsmath} +% and standard \LaTeX. All of the following patches work by injecting +% |\tabfig@font| in the right place. They try to do this as robustly as +% possible by reusing the original definition. +% \begin{macrocode} +\DeclareOption{eqno}{% + \AtBeginDocument{% + \@ifpackageloaded{amsmath}{% + \tabfig@def\maketag@@@#1{\tabfig@\maketag@@@{\tabfig@font #1}}% + }{% + \CheckCommand*\@eqnnum{{\normalfont \normalcolor (\theequation)}}% + \def\@eqnnum{{\normalfont \tabfig@font \normalcolor (\theequation)}}% + }% + }% +} +% \end{macrocode} +% +% \subsection{Table of contents} +% And similar lists such as list of figures and list of tables. +% \begin{macrocode} +\DeclareOption{toc}{% + \AtBeginDocument{% +% \end{macrocode} +% Generic. First two command that are using in formatting the lists by +% default. +% \begin{macrocode} + \tabfig@def\@dottedtocline#1#2#3#4#5{% + \tabfig@\@dottedtocline{#1}{#2}{#3}{#4}{\tabfig@font #5}% + }% + \tabfig@def\numberline#1{% + \tabfig@\numberline{\tabfig@font #1}% + }% +% \end{macrocode} +% Then a bunch of |\l@|\meta{level} commands for usually available +% entry types, which might not use the commands from above. +% \begin{macrocode} + \tabfig@patch@l{part}% + \tabfig@patch@l{chapter}% + \tabfig@patch@l{section}% + \tabfig@patch@l{subsection}% + \tabfig@patch@l{subsubsection}% + \tabfig@patch@l{paragraph}% + \tabfig@patch@l{subparagraph}% + \tabfig@patch@l{figure}% + \tabfig@patch@l{table}% +% \end{macrocode} +% Special support for parts and chapters in \pkg{memoir}. +% \begin{macrocode} + \@ifclassloaded{memoir}{% + \tabfig@def\cftchapterpresnum{\tabfig@font \tabfig@\cftchapterpresnum}% + \tabfig@def\cftpartpresnum{\tabfig@font \tabfig@\cftpartpresnum}% + }{}% + }% +} +% \end{macrocode} +% +% \subsection{Enumerations} +% Labels in enumerations. +% \begin{macrocode} +\DeclareOption{enum}{% + \AtBeginDocument{% + \tabfig@def\labelenumi{\tabfig@font \tabfig@\labelenumi}% + \tabfig@def\labelenumii{\tabfig@font \tabfig@\labelenumii}% + \tabfig@def\labelenumiii{\tabfig@font \tabfig@\labelenumiii}% + \tabfig@def\labelenumiv{\tabfig@font \tabfig@\labelenumiv}% + }% +} +% \end{macrocode} +% +% \subsection{Bibliography} +% Labels in the bibliography. +% \begin{macrocode} +\DeclareOption{bib}{% + \AtBeginDocument{% + \tabfig@def\@biblabel{\tabfig@font \tabfig@\@biblabel}% + \@ifpackageloaded{biblatex}{% + \DeclareFieldFormat{labelnumberwidth}{\mkbibbrackets{\tabfig@font #1}}% + \DeclareFieldFormat{labelalphawidth}{\mkbibbrackets{\tabfig@font #1}}% + }{}% + }% +} +% \end{macrocode} +% +% \subsection{Line numbers} +% \begin{macrocode} +\DeclareOption{lineno}{% + \AtBeginDocument{% + \@ifpackageloaded{doc}{% + \CheckCommand*\theCodelineNo{% + \reset@font\scriptsize\arabic{CodelineNo}}% + \def\theCodelineNo{% + \reset@font\tabfig@font\scriptsize\arabic{CodelineNo}}% + }{}% + }% +} +\ProcessOptions\relax +% \end{macrocode} +% +% \subsection{Auxiliary macros} +% This command is used for switching to tabular figures. This can be +% redefined to allow debugging, disabling, etc. +% \begin{macrocode} +\newcommand*\tabfig@font{\tbfigures} +% \end{macrocode} +% Visual debugging: Set tabular figures (produced by this package) in +% green. +% \begin{macrocode} +\iftabfig@debug + \RequirePackage{xcolor}% + \colorlet{tabfig@debug}{green!50!black}% + \renewcommand\tabfig@font{\tbfigures\color{tabfig@debug}}% +\fi +% \end{macrocode} +% Check if figure versions are supported at all. If not, we cannot do +% anything useful. +% \begin{macrocode} +\AtBeginDocument{% + \@ifundefined{tbfigures}{% + \PackageWarning{tabfigures}{There is no command + \string\tbfigures\space to support tabular figures}% + \let\tabfig@font\@empty + }{}% +} +% +% \end{macrocode} +% +% \Finale +\endinput diff --git a/Master/texmf-dist/source/latex/tabfigures/tabfigures.ins b/Master/texmf-dist/source/latex/tabfigures/tabfigures.ins new file mode 100644 index 00000000000..868567da933 --- /dev/null +++ b/Master/texmf-dist/source/latex/tabfigures/tabfigures.ins @@ -0,0 +1,55 @@ +% +% Copyright (c) 2007 by Andreas B\"uhmann +% Copyright (c) 2011 by Michael Ummels +% +% This work may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.3c +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.3 or later is part of all distributions of LaTeX +% version 2005/12/01 or later. +% +% This work has the LPPL maintenance status `maintained'. +% +% The Current Maintainer of this work is Michael Ummels. +% +% This work consists of the files tabfigures.dtx, tabfigures.ins and +% the derived files tabfigures.sty and tabfigures.pdf. +% + +\input docstrip + +\preamble + +Copyright (c) 2007 by Andreas Buehmann +Copyright (c) 2011 by Michael Ummels + +This work may be distributed and/or modified under the +conditions of the LaTeX Project Public License, either version 1.3c +of this license or (at your option) any later version. +The latest version of this license is in + http://www.latex-project.org/lppl.txt +and version 1.3 or later is part of all distributions of LaTeX +version 2005/12/01 or later. + +This work has the LPPL maintenance status `maintained'. + +The Current Maintainer of this work is Michael Ummels. + +This work consists of the files tabfigures.dtx, tabfigures.ins and +the derived files tabfigures.sty and tabfigures.pdf. + +\endpreamble + +\postamble +\endpostamble + +\keepsilent +\askforoverwritefalse + +\generate{ + \file{tabfigures.sty}{\from{tabfigures.dtx}{package}} +} + +\endbatchfile diff --git a/Master/texmf-dist/tex/latex/tabfigures/tabfigures.sty b/Master/texmf-dist/tex/latex/tabfigures/tabfigures.sty new file mode 100644 index 00000000000..7e72abe4d67 --- /dev/null +++ b/Master/texmf-dist/tex/latex/tabfigures/tabfigures.sty @@ -0,0 +1,132 @@ +%% +%% This is file `tabfigures.sty', +%% generated with the docstrip utility. +%% +%% The original source files were: +%% +%% tabfigures.dtx (with options: `package') +%% +%% Copyright (c) 2007 by Andreas Buehmann +%% Copyright (c) 2011 by Michael Ummels +%% +%% This work may be distributed and/or modified under the +%% conditions of the LaTeX Project Public License, either version 1.3c +%% of this license or (at your option) any later version. +%% The latest version of this license is in +%% http://www.latex-project.org/lppl.txt +%% and version 1.3 or later is part of all distributions of LaTeX +%% version 2005/12/01 or later. +%% +%% This work has the LPPL maintenance status `maintained'. +%% +%% The Current Maintainer of this work is Michael Ummels. +%% +%% This work consists of the files tabfigures.dtx, tabfigures.ins and +%% the derived files tabfigures.sty and tabfigures.pdf. +%% +\NeedsTeXFormat{LaTeX2e} +\ProvidesPackage{tabfigures}[2011/09/17 v1.0 Patches for using tabular figures] +\newcommand*\tabfig@@[1]{tabfig@@\expandafter\@cdr\string #1\@nil} +\newcommand*\tabfig@[1]{\csname \tabfig@@{#1}\endcsname} +\newcommand*\tabfig@name{} +\newcommand*\tabfig@save[1]{% + \edef\tabfig@name{\expandafter\expandafter\expandafter + \noexpand\tabfig@{#1}}% + \expandafter\newcommand\tabfig@name{}% + \expandafter\let\tabfig@name #1% +} +\newcommand*\tabfig@def[1]{% + \tabfig@save{#1}% + \def#1% +} +\newcommand*\tabfig@pname{} +\newcommand*\tabfig@patch@l[1]{% + \@ifundefined{l@#1}{}{% + \edef\tabfig@pname{\expandafter\noexpand\csname l@#1\endcsname}% + \expandafter\tabfig@save\tabfig@pname + \expandafter\edef\tabfig@pname##1##2{% + \noexpand\tabfig@ + \expandafter\noexpand\tabfig@pname + {##1}{\noexpand\tabfig@font ##2}% + }% + }% +} +\newif\iftabfig@debug \tabfig@debugfalse +\DeclareOption{debug}{\tabfig@debugtrue} +\DeclareOption{eqno}{% + \AtBeginDocument{% + \@ifpackageloaded{amsmath}{% + \tabfig@def\maketag@@@#1{\tabfig@\maketag@@@{\tabfig@font #1}}% + }{% + \CheckCommand*\@eqnnum{{\normalfont \normalcolor (\theequation)}}% + \def\@eqnnum{{\normalfont \tabfig@font \normalcolor (\theequation)}}% + }% + }% +} +\DeclareOption{toc}{% + \AtBeginDocument{% + \tabfig@def\@dottedtocline#1#2#3#4#5{% + \tabfig@\@dottedtocline{#1}{#2}{#3}{#4}{\tabfig@font #5}% + }% + \tabfig@def\numberline#1{% + \tabfig@\numberline{\tabfig@font #1}% + }% + \tabfig@patch@l{part}% + \tabfig@patch@l{chapter}% + \tabfig@patch@l{section}% + \tabfig@patch@l{subsection}% + \tabfig@patch@l{subsubsection}% + \tabfig@patch@l{paragraph}% + \tabfig@patch@l{subparagraph}% + \tabfig@patch@l{figure}% + \tabfig@patch@l{table}% + \@ifclassloaded{memoir}{% + \tabfig@def\cftchapterpresnum{\tabfig@font \tabfig@\cftchapterpresnum}% + \tabfig@def\cftpartpresnum{\tabfig@font \tabfig@\cftpartpresnum}% + }{}% + }% +} +\DeclareOption{enum}{% + \AtBeginDocument{% + \tabfig@def\labelenumi{\tabfig@font \tabfig@\labelenumi}% + \tabfig@def\labelenumii{\tabfig@font \tabfig@\labelenumii}% + \tabfig@def\labelenumiii{\tabfig@font \tabfig@\labelenumiii}% + \tabfig@def\labelenumiv{\tabfig@font \tabfig@\labelenumiv}% + }% +} +\DeclareOption{bib}{% + \AtBeginDocument{% + \tabfig@def\@biblabel{\tabfig@font \tabfig@\@biblabel}% + \@ifpackageloaded{biblatex}{% + \DeclareFieldFormat{labelnumberwidth}{\mkbibbrackets{\tabfig@font #1}}% + \DeclareFieldFormat{labelalphawidth}{\mkbibbrackets{\tabfig@font #1}}% + }{}% + }% +} +\DeclareOption{lineno}{% + \AtBeginDocument{% + \@ifpackageloaded{doc}{% + \CheckCommand*\theCodelineNo{% + \reset@font\scriptsize\arabic{CodelineNo}}% + \def\theCodelineNo{% + \reset@font\tabfig@font\scriptsize\arabic{CodelineNo}}% + }{}% + }% +} +\ProcessOptions\relax +\newcommand*\tabfig@font{\tbfigures} +\iftabfig@debug + \RequirePackage{xcolor}% + \colorlet{tabfig@debug}{green!50!black}% + \renewcommand\tabfig@font{\tbfigures\color{tabfig@debug}}% +\fi +\AtBeginDocument{% + \@ifundefined{tbfigures}{% + \PackageWarning{tabfigures}{There is no command + \string\tbfigures\space to support tabular figures}% + \let\tabfig@font\@empty + }{}% +} +%% +%% +%% End of file `tabfigures.sty'. diff --git a/Master/tlpkg/bin/tlpkg-ctan-check b/Master/tlpkg/bin/tlpkg-ctan-check index f6e09dd573e..ef6487a71d8 100755 --- a/Master/tlpkg/bin/tlpkg-ctan-check +++ b/Master/tlpkg/bin/tlpkg-ctan-check @@ -356,7 +356,7 @@ my @TLP_working = qw( swebib swimgraf syllogism syntax synproof syntrace synttree systeme t-angles t2 - tableaux tablists tablor tabls tabto-generic tabto-ltx + tabfigures tableaux tablists tablor tabls tabto-generic tabto-ltx tabu tabularborder tabularcalc tabularew tabulars-e tabulary tabvar tagging talk tamethebeast tapir tcldoc tdclock tdsfrmath diff --git a/Master/tlpkg/tlpsrc/collection-latexextra.tlpsrc b/Master/tlpkg/tlpsrc/collection-latexextra.tlpsrc index 94bd77a3296..47b896f2288 100644 --- a/Master/tlpkg/tlpsrc/collection-latexextra.tlpsrc +++ b/Master/tlpkg/tlpsrc/collection-latexextra.tlpsrc @@ -662,6 +662,7 @@ depend svninfo depend syntax depend syntrace depend synttree +depend tabfigures depend tableaux depend tablists depend tabls diff --git a/Master/tlpkg/tlpsrc/tabfigures.tlpsrc b/Master/tlpkg/tlpsrc/tabfigures.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d -- cgit v1.2.3