diff options
author | Karl Berry <karl@freefriends.org> | 2006-01-12 23:58:22 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2006-01-12 23:58:22 +0000 |
commit | c6b827c6f5aab4beff40b7bef80e869c6815d826 (patch) | |
tree | 1ed61d883ba88897fbf68a71547b4a7286e57368 /Master/texmf-dist/tex/latex/ltxmisc/captdef.sty | |
parent | 7f9543ffaf295484b99beae71350a519562df613 (diff) |
ltxmisc
git-svn-id: svn://tug.org/texlive/trunk@1056 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/tex/latex/ltxmisc/captdef.sty')
-rw-r--r-- | Master/texmf-dist/tex/latex/ltxmisc/captdef.sty | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/Master/texmf-dist/tex/latex/ltxmisc/captdef.sty b/Master/texmf-dist/tex/latex/ltxmisc/captdef.sty new file mode 100644 index 00000000000..b4dbcb546aa --- /dev/null +++ b/Master/texmf-dist/tex/latex/ltxmisc/captdef.sty @@ -0,0 +1,32 @@ +% +% captdef.sty: a trivial package to define captions that don't have +% to be in floats. +% +% Author: Robin Fairbairns <rf10@cam.ac.uk> +% Conceived ages ago, but written 1998/12/17 +% +% This program can redistributed and/or modified under the terms +% of the LaTeX Project Public License Distributed from CTAN +% archives in directory macros/latex/base/lppl.txt; either +% version 1 of the License, or (at your option) any later version. +% +% Usage: \DeclareCaption{command}{counter} +% +% declare `command' to produce a caption which uses `counter' for its +% numbering. +% +% The package then goes on to use this command to declare the most +% commonly required pair of non-float captions, \figcaption and +% \tabcaption + +\NeedsTeXFormat{LaTeX2e} +\ProvidesPackage{captdef}[1998/12/17 non-floating captions] + +\newcommand{\DeclareCaption}[2]{% + \def#1{\def\@captype{#2}\caption}% +} + +\DeclareCaption{\figcaption}{figure} +\DeclareCaption{\tabcaption}{table} + +\endinput |