diff options
Diffstat (limited to 'Master/texmf-dist/doc/latex/multibib')
-rw-r--r-- | Master/texmf-dist/doc/latex/multibib/README | 28 | ||||
-rwxr-xr-x | Master/texmf-dist/doc/latex/multibib/bibtexall | 18 | ||||
-rw-r--r-- | Master/texmf-dist/doc/latex/multibib/multibib.pdf | bin | 329634 -> 215343 bytes |
3 files changed, 31 insertions, 15 deletions
diff --git a/Master/texmf-dist/doc/latex/multibib/README b/Master/texmf-dist/doc/latex/multibib/README index 21aaa09913b..3239ef99918 100644 --- a/Master/texmf-dist/doc/latex/multibib/README +++ b/Master/texmf-dist/doc/latex/multibib/README @@ -17,7 +17,7 @@ To produce the documentation latex multibib.dtx - If you do not want to include the macro section in the documentation, + If you do not want to exclude the macro section from the documentation, remove the comment sign before \OnlyDescription. To produce an index for the documentation: @@ -31,20 +31,24 @@ To produce the documentation Contents: - 00Readme this file ;-) - multibib.dtx documented source file for the multibib package - multibib.ins installation file - mbgglo.ist modification of gglo.ist to produce a change history for - the documentation of multibib - mbgind.ist modification of gind.ist to produce an index for - the documentation of multibib + README this file ;-) + + multibib.dtx documented source file for the multibib package + multibib.ins installation file + multibib.pdf documentation + + mbgglo.ist modification of gglo.ist to produce a change history for + the documentation of multibib + mbgind.ist modification of gind.ist to produce an index for + the documentation of multibib - bibtexall shell script to run bibtex on each .aux file in the - present directory - mbplain.bst modification of plain.bst to be used together with multibib + bibtexall shell script to run bibtex on each .aux file in the + present directory + mbplain.bst modification of plain.bst to be used together with multibib + mbunsrtdin.bst modification of unsrtdin.bst to be used together with multibib Happy TeXing - Thorsten Hansen, thorsten.hansen@psychol.uni-giessen.de + Thorsten Hansen, Thorsten.Hansen@psychol.uni-giessen.de diff --git a/Master/texmf-dist/doc/latex/multibib/bibtexall b/Master/texmf-dist/doc/latex/multibib/bibtexall index 6a0e58ec474..3b2849486aa 100755 --- a/Master/texmf-dist/doc/latex/multibib/bibtexall +++ b/Master/texmf-dist/doc/latex/multibib/bibtexall @@ -2,8 +2,20 @@ # # Evoke bibtex for each .aux file in the present directory. # -# Thorsten Hansen, 2003-03-24 - +# Usage: +# Change to the directory where you want to bibtex all .aux files which +# have a citation command and type +# +# bibtexall +# +# Thorsten Hansen, 2003-03-24 (first entry) +# 2005-10-26 do not evoke bibtex on .aux files w/o \citation's +# 2008-11-06 no message for files w/o citations for file in *.aux ; do - bibtex `basename $file .aux` + if grep -c -q '\\citation' $file; then + echo "process $file" + bibtex `basename $file .aux` +# else +# echo "ignore file $file which has no \citation command" + fi done diff --git a/Master/texmf-dist/doc/latex/multibib/multibib.pdf b/Master/texmf-dist/doc/latex/multibib/multibib.pdf Binary files differindex 74585637375..2e230e21648 100644 --- a/Master/texmf-dist/doc/latex/multibib/multibib.pdf +++ b/Master/texmf-dist/doc/latex/multibib/multibib.pdf |