diff options
author | Karl Berry <karl@freefriends.org> | 2006-07-21 23:50:03 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2006-07-21 23:50:03 +0000 |
commit | 6205fe4cf94df0a8693755ae920874a8c7b9e959 (patch) | |
tree | b9bb7f5c0bd37d8fe34aa6dbd377a571dbb3b823 /Master/texmf-dist/doc/latex/minitoc/xmk | |
parent | c3ea4d2926cc433f86635f1d9d122be96311c55f (diff) |
minitoc 46 update (20jul06)
git-svn-id: svn://tug.org/texlive/trunk@1892 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/minitoc/xmk')
-rwxr-xr-x | Master/texmf-dist/doc/latex/minitoc/xmk | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/minitoc/xmk b/Master/texmf-dist/doc/latex/minitoc/xmk new file mode 100755 index 00000000000..0a24cf8ea51 --- /dev/null +++ b/Master/texmf-dist/doc/latex/minitoc/xmk @@ -0,0 +1,28 @@ +#! /bin/csh +####################### +foreach f ( add addsec ) +foreach i ( 1 2 3 ) +pdflatex $f +bibtex $f +if ( -e $f.idx ) then + makeindex -s gind.ist -o $f.ind $f.idx +endif +if ( -e $f.glo ) then + makeindex -s gglo.ist -o $f.gls $f.glo +endif +end +if ( -e $f.maf) then + \rm -f `cat $f.maf` $f.aux $f.log $f.toc $f.bbl $f.blg $f.lof $f.lot $f.ind $f.idx %f.ind +endif +end +####################### +foreach f ( hide1 hide2 apx app-mem mem mem1 fo1 fo2 scr subf \ + tsfc tbi 2c bo hop cri livre ch0 tlc mu hir hia gaps \ + minitoc-ex mini-art second ) + foreach i ( 1 2 3 ) + pdflatex $f + end +if ( -e $f.maf) then + \rm -f `cat $f.maf` $f.aux $f.log $f.toc $f.bbl $f.blg $f.lof $f.lot $f.ind $f.idx %f.ind +endif +end |