BibTeX, biblatex and biberPrint BibTeX file only

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
Jwarde
Posts: 2
Joined: Sat Feb 02, 2013 4:43 am

Print BibTeX file only

Post by Jwarde »

I have created a long list of works written by a well known author. I have a reasonably large .bib file and all I want to do is print this file In nice latex output. Maybe an intro line or two. I am not creating links from a reference to the bibliography. Hope this makes sense. How can I do this. thank you. Jake

Recommended reading 2024:

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

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

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

rais
Posts: 419
Joined: Sun Nov 16, 2014 8:51 pm

Print BibTeX file only

Post by rais »

Hi,
if you just want to populate your bibliography without actually citing anything, use \nocite{*}, e.g.,

Code: Select all

\documentclass{article}
\usepackage{csquotes}
\usepackage[style=authoryear]{biblatex}
\addbibresource{biblatex-examples.bib}
\begin{document}
\nocite{*}
\printbibliography
\end{document}
KR
Rainer
Jwarde
Posts: 2
Joined: Sat Feb 02, 2013 4:43 am

Print BibTex file only

Post by Jwarde »

Thank you this is awesome. Looks great! Jake
Post Reply