summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/multibib
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2006-01-09 00:49:07 +0000
committerKarl Berry <karl@freefriends.org>2006-01-09 00:49:07 +0000
commit007f67a693e4d031fd3d792df8e4d5f43e2cb2e7 (patch)
tree90d17e00e572ecb1e24764b6f29c80e098b08d29 /Master/texmf-dist/doc/latex/multibib
parent950209b26f70aa87ed07c54f82a95b6f03b7c3a0 (diff)
doc/latex
git-svn-id: svn://tug.org/texlive/trunk@84 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/multibib')
-rw-r--r--Master/texmf-dist/doc/latex/multibib/README50
-rwxr-xr-xMaster/texmf-dist/doc/latex/multibib/bibtexall9
2 files changed, 59 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/multibib/README b/Master/texmf-dist/doc/latex/multibib/README
new file mode 100644
index 00000000000..21aaa09913b
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/multibib/README
@@ -0,0 +1,50 @@
+
+Abstract
+
+ The `multibib' package allows to create references to multiple
+ bibliographies within one document. It thus provides a complementary
+ functionality to packages like `bibunits' or `chapterbib', which allow
+ to create one bibliography for multiple, but different parts of the
+ document.
+
+
+To produce the style
+
+ latex multibib.ins
+
+
+To produce the documentation
+
+ latex multibib.dtx
+
+ If you do not want to include the macro section in the documentation,
+ remove the comment sign before \OnlyDescription.
+
+ To produce an index for the documentation:
+
+ makeindex -s mbgind.ist multibib
+
+ To produce a change history for the documentation:
+
+ makeindex -s mbgglo.ist -o multibib.gls multibib.glo
+
+
+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
+
+ 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
+
+
+
+Happy TeXing
+
+ 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
new file mode 100755
index 00000000000..6a0e58ec474
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/multibib/bibtexall
@@ -0,0 +1,9 @@
+#!/bin/bash
+#
+# Evoke bibtex for each .aux file in the present directory.
+#
+# Thorsten Hansen, 2003-03-24
+
+for file in *.aux ; do
+ bibtex `basename $file .aux`
+done