BibTeX, biblatex and biber ⇒ How to print bib database and keys?
How to print bib database and keys?
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?
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
-
arwintcher
- Posts: 29
- Joined: Thu Feb 19, 2009 3:23 pm
Re: How to print bib database and keys?
How to print bib database and keys?
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