summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/confproc/example/buildproc
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/doc/latex/confproc/example/buildproc')
-rw-r--r--Master/texmf-dist/doc/latex/confproc/example/buildproc31
1 files changed, 0 insertions, 31 deletions
diff --git a/Master/texmf-dist/doc/latex/confproc/example/buildproc b/Master/texmf-dist/doc/latex/confproc/example/buildproc
deleted file mode 100644
index c6d47770f55..00000000000
--- a/Master/texmf-dist/doc/latex/confproc/example/buildproc
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/bin/sh
-
-#--- set user dependent file name
-TEXFILE="example"
-#--- set system dependent variables
-#LATEXPATH="/usr/local/teTeX/bin/i386-apple-darwin-current/" # for teTeX
-LATEXPATH="/usr/texbin/" # for TexLive 2007
-#--- set compilers' paths
-PDFLATEX=$LATEXPATH"pdflatex"
-BIBTEX=$LATEXPATH"bibtex"
-MAKEINDEX=$LATEXPATH"makeindex"
-
-#--- Compile
-echo; echo; echo '*** bash: copying class insertion file ***'
-cp exclasspre.tex exclass.tex
-echo; echo; echo '*** PdfLaTeX: create toc (1/7) ***'
-$PDFLATEX $TEXFILE.tex
-echo; echo; echo '*** Bibtex: generate the general biblio. (2/7) ***'
-$BIBTEX $TEXFILE
-echo; echo; echo '*** Makeindex: create index of authors (3/7) ***'
-$MAKEINDEX -s confproc.ist $TEXFILE.idx
-echo; echo; echo '*** PdfLaTeX: create toc + include index (4/7) ***'
-$PDFLATEX $TEXFILE.tex
-echo; echo; echo '*** PdfLaTeX: create backrefs (5/7) ***'
-$PDFLATEX $TEXFILE.tex
-echo; echo; echo '*** PdfLaTeX: give proper toc and backrefs (6/7) ***'
-$PDFLATEX $TEXFILE.tex
-echo; echo; echo '*** bash: copying class insertion file ***'
-cp exclasslast.tex exclass.tex
-echo; echo; echo '*** PdfLaTeX: full papers (mod. class insertion) (7/7) ***'
-$PDFLATEX $TEXFILE.tex