I have over 500 entries in a single BibTeX file, and although this may sound like a general question, is there a way of seeing all the authors or references at a glance? Ie can I create a list of all entries by author?
Regards,
You can add \nocite{*} at the end of the document to get a complete bibliography printed, regardless of whether it is cited in the text. Does that accomplish what you want?
If you want them ordered on authors, you can look for the appropriate bibliography style. I think plainnat works like that.
You can use biblist:
\documentclass{article}
%\usepackage{natbib} %% or this....
\usepackage{biblist}
\begin{document}
\bibliographystyle{plain} %% with plainnat
\bibliography{xampl}
\end{document}

biblatexsolution look at http://tex.stackexchange.com/a/83891/16895 – Guido Mar 21 '13 at 11:32bibliography.bibor similar (note the extension) and add the entries in there. – Mythio Mar 21 '13 at 11:43.bibfile. Also most TeX editors (and other editors) have features to handle.bibfiles. – Guido Mar 21 '13 at 11:56.bibfile based on year myself, but I admit that only works if you do it right from the start...sorting out 500 entries at this point could prove to be...annoying ;-) – Mythio Mar 21 '13 at 12:16