diff options
author | Karl Berry <karl@freefriends.org> | 2014-05-07 20:35:21 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2014-05-07 20:35:21 +0000 |
commit | e3ee374de9d7f8a3b3e71651c1ae021102fe5928 (patch) | |
tree | f09d29f363d59072c651d17b164765789986bb04 /Master/texmf-dist/doc/latex/ctable/doit | |
parent | 2aa6431ce4bd094a95775701737700466683f820 (diff) |
ctable (7may14)
git-svn-id: svn://tug.org/texlive/trunk@33900 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/ctable/doit')
-rw-r--r-- | Master/texmf-dist/doc/latex/ctable/doit | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Master/texmf-dist/doc/latex/ctable/doit b/Master/texmf-dist/doc/latex/ctable/doit index ddf387dcf65..c62c1ca30f4 100644 --- a/Master/texmf-dist/doc/latex/ctable/doit +++ b/Master/texmf-dist/doc/latex/ctable/doit @@ -11,7 +11,6 @@ # nn[a-z].pdf for the ctable picture # and snn[a-z].pdf for the source code verbatim. # The prefix (s) for source verbatims and (empty) for result files is set by PRE -# Windows users should replace NULL with perhaps "c:/temp/null" set=${1:-[0-9][0-9][a-z]} for j in $set; do # source verbatim @@ -30,7 +29,7 @@ for j in $set; do EOD } >s$j.tex - pdflatex --interaction=nonstopmode s$j.tex >& /dev/null || die "error compiling s$j.tex" + mk --noprint --noview s$j.tex >/dev/null && mk -c s$j pdfcrop s$j.pdf s$j.pdf >& /dev/null # result { echo '\documentclass[twoside]{article}' @@ -45,6 +44,6 @@ for j in $set; do cat $j echo '\end{document}' } > $j.tex - pdflatex --interaction=nonstopmode $j.tex >& /dev/null || die "error compiling $j.tex" + mk --noprint --noview $j.tex >/dev/null && mk -c $j pdfcrop $j.pdf $j.pdf >& /dev/null done |