I want to print all entries in my .bib file with keys listed besides every entry.
For example, if I have in my .bib file something like that:
@article{key,
author = "Name",
title = "Title",
year = 2000
}
can I get it printed in pdf file like this:
[key] Name.Title.2000.
I need it because there are many entries in my bibliography database and it's not very comfortable to look in the .bib file for the keys when I want to cite something. Or maybe there is some better way to solve this problem?
BibTeX, biblatex and biber ⇒ How to print bib database and keys?
NEW: TikZ book now 40% off at Amazon.com for a short time.
-
- Posts: 29
- Joined: Thu Feb 19, 2009 3:23 pm
Re: How to print bib database and keys?
Are you just using your bibliography database as a single text file? Perhaps you should try something like JabRef.
How to print bib database and keys?
Hi pakogaban,
you could use the showkeys package. Assuming that your biliographical database is biblio.bib you can create a .tex document like the following (I will call it test.tex):
and then process it in the standard way:
The obtained pdf document will contain all the items of the file biblio.bib with their corresponding keys nicely boxed.
you could use the showkeys package. Assuming that your biliographical database is biblio.bib you can create a .tex document like the following (I will call it test.tex):
Code: Select all
\documentclass{book}
\usepackage{showkeys}
\begin{document}
\nocite{*}
\bibliographystyle{plain}
\bibliography{biblio}
\end{document}
Code: Select all
pdflatex test
bibtex test
pdflatex test
pdflatex test
1,1,2,3,5,8,13,21,34,55,89,144,233,...
How to print bib database and keys?
Thank you, gmedina, that's what I wanted!