I'm trying to find a way to dynamically generate statistics about the references used within a document.
For example, to generate a histogram showing the number of references by year, that were cited within the document. Or, a graph showing the number of references by publication type (journal, conference, online).
This is similar, in a way, to Statistics about your bibtex database, but I don't want to look at the entire BibTeX database, only what's used by the paper. And then, I want to use that data to generate a few plots.
My first thought was to write a script that parses the .bbl file, and generates the LaTeX code to create the plot.
However, I'm hoping that something like this already exists, maybe as an extension to BibTeX?
Thanks!
.bbl, I think it would be easier to parse the.auxfile for\citationcommands, and pass those keys to something like bibtexparser. – Mike Renfro Aug 06 '15 at 12:27bibexport. – iled Jul 01 '20 at 18:10