Path: utzoo!utgpu!news-server.csri.toronto.edu!neat.cs.toronto.edu!vinay Newsgroups: comp.text.tex From: vinay@ai.toronto.edu ("Vinay K. Chaudhri") Subject: Printing Bibliography Message-ID: <90Aug16.141642edt.8962@neat.cs.toronto.edu> Organization: Department of Computer Science, University of Toronto Distribution: na Date: 16 Aug 90 18:16:55 GMT Lines: 28 > I have a bibliographic database (BiBTeX format) that I plan to use > with my LaTeX documents. Now each entry of this database may not be > cited in the source document. I want to have one print out of the database > in which *every* entry is listed (formatted). > Is there any way to do this ? Thanx to everyone who responded to my above query. The solutions varied from as simple as using \nocite{*} command to as complex as using a special purpose shell script. I found using \nocite{*} to be the easiest thing. All you have to do is to create a dummy file containing only the above command and process it using LaTeX as regular files. For example this dummy file may look like : \documentstyle[12pt,fullpage]{article} \textheight 8.5 in \textwidth 6.5 in \begin{document} \nocite{*} \bibliographystyle{alpha} \bibliography{name-of-bibliography-database} \end{document} ------------------------------------------------------------------ vinay@ai.toronto.edu