diff options
Diffstat (limited to 'Master/texmf-dist/doc')
-rw-r--r-- | Master/texmf-dist/doc/latex/ctable/README | 33 | ||||
-rw-r--r-- | Master/texmf-dist/doc/latex/ctable/ctable.pdf | bin | 823322 -> 823265 bytes | |||
-rwxr-xr-x | Master/texmf-dist/doc/latex/ctable/inst | 17 |
3 files changed, 28 insertions, 22 deletions
diff --git a/Master/texmf-dist/doc/latex/ctable/README b/Master/texmf-dist/doc/latex/ctable/README index 9dc512cd01b..c59511fcb35 100644 --- a/Master/texmf-dist/doc/latex/ctable/README +++ b/Master/texmf-dist/doc/latex/ctable/README @@ -1,19 +1,20 @@ -This is version 1.25 of the ctable package -License: LPPL +------------------------------------------------------------------------------------- +ctable --- Flexible typesetting of table and figure floats using key/value directives +Author: Wybo Dekker +E-mail: wybo@dekkerdocumenten.nl +License: Released under the LaTeX Project Public License v1.3c or later +See: http://www.latex-project.org/lppl.txt +------------------------------------------------------------------------------------- -ctable.sty provides commands to easily typeset centered or left or -right aligned tables and (multiple-)figure floats, with footnotes. -Instead of an environment, a command with 4 arguments is used; the -first is optional and is used for key,value pairs generating -variations on the defaults and offering a route for future -extensions. +Short description: +ctable.sty provides commands to easily typeset centered or left or right +aligned tables and (multiple-)figure floats, with footnotes. Instead of an +environment, a command with 4 arguments is used; the first is optional and +is used for key,value pairs generating variations on the defaults and +offering a route for future extensions. -changes of v1.25 relative to v1.24: -- url's to CTAN corrected +Installation: +Execute the inst script with the --help option for more information. -changes of v1.24 relative to v1.23: -- require xcolor instead of color -- added option bgopacity -- added option sidecap (for memoir only) - -$Id: README,v 1.15 2013/05/24 10:12:54 wybo Exp $ +Changes in version 1.26: + footerwidth option was inactive when notespar option was active diff --git a/Master/texmf-dist/doc/latex/ctable/ctable.pdf b/Master/texmf-dist/doc/latex/ctable/ctable.pdf Binary files differindex e4c87a92ee7..6feca72a6be 100644 --- a/Master/texmf-dist/doc/latex/ctable/ctable.pdf +++ b/Master/texmf-dist/doc/latex/ctable/ctable.pdf diff --git a/Master/texmf-dist/doc/latex/ctable/inst b/Master/texmf-dist/doc/latex/ctable/inst index 7c5a60a8651..afdd96cd19b 100755 --- a/Master/texmf-dist/doc/latex/ctable/inst +++ b/Master/texmf-dist/doc/latex/ctable/inst @@ -19,7 +19,7 @@ function help { Usage: inst [option] Options: -h, --help Print this help - -c, --clean Clean up, but keep $NAME.{sty,pdf} + -c, --clean Clean up, but keep $NAME.{sty,pdf} and README -C, --Clean Clean up all files that can be regenerated -z, --zip Create zip for CTAN (developer only) EOD @@ -32,7 +32,7 @@ function clean { } function Clean { clean - rm -f {$NAME,doc/*}.{sty,cls,pdf} + rm -f {$NAME,doc/*}.{sty,cls,pdf} README } function makeall { @@ -77,8 +77,15 @@ function makeall { echo $NAME successfully installed fi texlog_extract $NAME + readme } +function readme { # generate the README file + sed -n "/^%<\*readme>/,/^%<\/readme>/p;/\\\\changes{v$version}/,/^% }/p" $NAME.dtx | + sed "s/^%//;s/\\\\\\\\$//;/<.readme>/d;/^ }/d;s/ \\\\changes.*/Changes in version $version:/" >README +} + + function mkzip { # is cvs up to date? cvs -Q status 2>&1 |grep Status:|grep -v Up-to-date @@ -111,9 +118,6 @@ function mkzip { cvs-date: $cvsdate EOD - # is README updated? - grep "v$version relative to" README >/dev/null || die README not updated - quitting... - # normally packdate and cvsdate are equal, because I make the zip right after updating CVS: if [ $packdate != $cvsdate ]; then echo package and cvs dates differ @@ -129,6 +133,7 @@ function mkzip { echo " created: $zip" } +version=`grep " v[0-9.]\+ $NAME package" $NAME.dtx |sed 's/.* v\([0-9.]\+\) .*/\1/' ` if ! options=$(getopt -o hcCz \ -l help,clean,Clean,zip -- "$@"); then exit 1; fi @@ -148,5 +153,5 @@ done makeall -# $Id: inst,v 1.31 2013/04/28 12:25:00 wybo Exp $ +# $Id: inst,v 1.33 2013/06/14 21:12:34 wybo Exp $ |