[texhax] Jurabib, Multibib and \nobibliography

Bart C. Wise tug at wiseguysweb.com
Wed Oct 24 00:17:25 CEST 2007


I'm trying to use the jurabib and multibib packages together.  At the end of 
the document that I'm producing, I want the references for the multibib 
bibliographies (books.bib, letters.bib) to be printed.  However, I do not 
want the references listed at the end of the document from the normal 
bibliography (footnotes.bib) that jurabib uses.

If I specify the jurabib bibliography with \bibliography{footnotes}, I get all 
three references (books, letters, and footnotes) listed.  If I specify the 
jurabib bibliography with \nobibliography{footnotes}, then the references 
section for the footnotes bibliography is not printed (what I want); however, 
the books and letters bibliographies only show the titles of the 
bibliographies and no references (I want the references to show as well).

The code listed below --- it's a modified jbtestmb.tex sample code that is 
included with the jurabib package.

Any thoughts on how to get the multibib references to show and the jurabib 
references not to show? 




%%%%%%%%%%%%   sample-jurabib-multibib.tex   %%%%%%%%%%%%
\documentclass{article}
\usepackage[%
         titleformat=italic,%
         titleformat=commasep,%
         commabeforerest,%
         ibidem=strict,%
         citefull=first,%
         lookat,%
         oxford,%
         pages=format,%
         idem%
]{jurabib}
\bibliographystyle{jurabib}

\usepackage{multibib}
\newcites{books}{Books}
\newcites{letters}{Letters}

\begin{document}

One\footcite[2--3]{helm72}
Two\footcite{helm72}
Three\footcite[7]{helm72}
Four\footcite[8--9]{helm72}
Five\footcite{helm72}

\nocitebooks{*}
\bibliographybooks{books}
\bibliographystylebooks{jurabib}

\nociteletters{*}
\bibliographyletters{letters}
\bibliographystyleletters{jurabib}

%% The normal bibliography
\bibliography{footnotes}

\end{document}
%%%%%%%%%%%%   footnotes.bib   %%%%%%%%%%%%
@ARTICLE{helm72,
  author      = {Helm, Paul},
  gender      = {sm},
  title       = {Revealed Propositions and Timeless Truths},
  journal     = {Religious Studies},
  year        = 1972,
  volume      = 8,
  pages       = {127--136},
  comment     = {Nog eens kopieren}
}
%%%%%%%%%%%%   books.bib   %%%%%%%%%%%%
@Book{book1,
  author         = {Book One Author},
  title          = {Book 1 Title},
  shorttitle     = {B1T},
  language       = {english},
  year           = {1900},
  address        = {New York City}
}

@Book{book2,
  author         = {Book Two Author},
  title          = {Book 2 Title},
  shorttitle     = {B2T},
  language       = {english},
  year           = {1900},
  address        = {New York City}
}
%%%%%%%%%%%%   letters.bib   %%%%%%%%%%%%
@Unpublished{letter2,
  Author         = {Author Two},
  Title          = {Letter 2 Title},
  address        = {New York City},
  language       = {english},
  shorttitle     = {L2T},
  year           = 1900
}

@Unpublished{letter1,
  Author         = {Author One},
  Title          = {Letter 1 Title},
  address        = {New York City},
  language       = {english},
  shorttitle     = {L1T},
  year           = 1900
}
%%%%%%%%%%%%   TO MAKE   %%%%%%%%%%%%
pdflatex sample-jurabib-multibib
bibtex sample-jurabib-multibib
bibtex books
bibtex letters
pdflatex sample-jurabib-multibib
pdflatex sample-jurabib-multibib
pdflatex sample-jurabib-multibib


More information about the texhax mailing list