summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/multibib
diff options
context:
space:
mode:
authorDr. Clea F. Rees <cfrees@imapmail.org>2008-12-10 20:50:19 +0000
committerDr. Clea F. Rees <cfrees@imapmail.org>2008-12-10 20:50:19 +0000
commit2e59afec9907d090fa6cb3d54066333df8826741 (patch)
tree65a9eda4eb7208bd2ddd1a3bc1f5f9db3da55077 /Master/texmf-dist/doc/latex/multibib
parenta5debc181fdd5c81cbc800cf5d469b204c51e042 (diff)
multibib update 2008/12/10
git-svn-id: svn://tug.org/texlive/trunk@11585 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/multibib')
-rw-r--r--Master/texmf-dist/doc/latex/multibib/README28
-rwxr-xr-xMaster/texmf-dist/doc/latex/multibib/bibtexall18
-rw-r--r--Master/texmf-dist/doc/latex/multibib/multibib.pdfbin329634 -> 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
index 74585637375..2e230e21648 100644
--- a/Master/texmf-dist/doc/latex/multibib/multibib.pdf
+++ b/Master/texmf-dist/doc/latex/multibib/multibib.pdf
Binary files differ