BibTeX, biblatex and biberFull List of References

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
fergt
Posts: 1
Joined: Fri Aug 12, 2011 9:58 am

Full List of References

Post by fergt »

Given a .bib file, is there any latex command (or sequence of commands) that produces a file (pdf, ps) with all the references in the bib file ordered (alphabetically, by date or something similar) ?

Usually bibtex only shows the references that are called inside a tex code by \cite{} but there must be a way of showing them all with a single command, I guess.

Thanks

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

Stefan Kottwitz
Site Admin
Posts: 10345
Joined: Mon Mar 10, 2008 9:44 pm

Full List of References

Post by Stefan Kottwitz »

Hi,

you could use \nocite, such as

Code: Select all

\nocite{*}
then all references will appear in the bibliography list, even if not cited.

Stefan
LaTeX.org admin
Post Reply