Path: utzoo!mnetor!tmsoft!torsqnt!lethe!yunexus!ists!helios.physics.utoronto.ca!news-server.csri.toronto.edu!cs.utexas.edu!helios!diamond!jdm5548 From: jdm5548@diamond.tamu.edu (James Darrell McCauley) Newsgroups: comp.text.tex Subject: Re: Printing Bibliographies Message-ID: <12665@helios.TAMU.EDU> Date: 26 Feb 91 15:32:16 GMT References: <1991Feb26.124847.21638@solo.csci.unt.edu> Sender: usenet@helios.TAMU.EDU Reply-To: jdm5548@diamond.tamu.edu (James Darrell McCauley) Organization: Ag Engineering Dept, Texas A&M University Lines: 41 In article <1991Feb26.124847.21638@solo.csci.unt.edu>, jacob@ponder.csci.unt.edu (Tom Jacob) writes: |> I have several bibliographies in BibTeX format. I would like to use |> LaTeX/BibTeX to print out an entire bibliography by itself, not as a |> part of a larger document. I would prefer not to have to list every item |> in the bibliography, since a couple of them are quite large. I guess what |> I'd really like to be able to do is type something like |> |> printbib bibtex_file_name |> Tom, what you're missing is the \nocite{*}. This is something that was added to BibTeX 0.99. I'm assuming that you're using this version. EVERYONE READING THIS POST: please make note of this on pages 74 and 188 of your LaTeX book. ---cut here %printbib.tex \documentstyle{article} \begin{document} \bibliographystyle{asaetr} % <-- your favorite BibTeX style (*.bst) \nocite{*} % <-- Here's the "trick" \bibliography{Kohonen} % <-- here's the bibliography file name (*.bib) \end{document} ---cut here Follow the usual steps. --cut here #!/bin/csh set THEFILE=printbib set PRINT=dvips latex $THEFILE bibtex $THEFILE latex $THEFILE latex $THEFILE $PRINT $THEFILE exit --cut here -- James Darrell McCauley (jdm5548@diamond.tamu.edu, jdm5548@tamagen.bitnet) Spatial Analysis Lab, Department of Agricultural Engineering, Texas A&M University, College Station, Texas 77843-2117, USA