diff options
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 |