bib-publication-list is a javascript tool to automatically generate an interactive HTML publication list from a BibTeX file. It uses jQuery, DataTables, and JavaScript BibTeX Parser.
There are example files in the test/html
folder, please refer to them for examples and live demos.
Alternatively, you can see this plug-in live on my French website or on the English one.
To use this program, you will need to
- Include your BibTex references in your
html
webpage, - Load one css file and two javascript libraries (jQuery, and our script),
- Call the program with a
<script>
element.
The pre-compiled (and minified) files are at in the release.
Include the BibTeX into an HTML page and the <div>
element where you want your list of references to appear.
For example:
<div id="bib-publication-list">
<table></table>
</div>
<pre id="bibtex">
@inproceedings{Aubert2022FSCD,
editor = {Felty, Amy P.},
doi = {10.4230/LIPIcs.FSCD.2022.26},
pages = {26:1--26:23},
volume = {228},
series = {LIPIcs},
publisher = {Schloss Dagstuhl - Leibniz-Zentrum f{\"{u}}r Informatik},
booktitle = {FSCD 2022},
year = {2022},
author = {Aubert, Clément and Rubiano, Thomas and Rusch, Neea and Seiller, Thomas},
title = {mwp-Analysis Improvement and Implementation: Realizing Implicit Computational Complexity},
}
</pre>
The graph and the legend will be inserted just above the table. If you want to place them anywhere else in the page, e.g. if you want to wrap your table in a container and have the graph and legend outside, you can declare them in the HTML. The script won't insert new elements before the table and will instead use the ones you have created.
<div id="bib-publication-list">
<div class="bibchart-container">
<div class="bibchart"></div>
</div>
<div class="legend"></div>
<div class="some-table-wrapper">
<table></table>
</div>
</div>
Load the css file, jquery and our script:
<link rel="stylesheet" href="bib-list.css">
...
<script
src="https://code.jquery.com/jquery-3.6.1.js"
integrity="sha256-3zlB5s2uwoUzrXK3BT7AX3FyvojsraNFxCc2vC/7pNI="
crossorigin="anonymous"></script>
<script type="text/javascript" src="bib-list.js"></script>
Alternatively, you can use the compressed versions:
<link rel="stylesheet" href="bib-list.min.css">
...
<script src="https://code.jquery.com/jquery-3.6.1.min.js"
integrity="sha256-o88AwQnZB+VDvE9tvIXrMQaPlFFSUTR+nldQm1LuPXQ="
crossorigin="anonymous"></script>
<script type="text/javascript" src="bib-list.min.js"></script>
Finally, the bib-publication-list
needs to know the input data element and the output table (cf. below for the configuration options).
So, some JavaScript:
<script type="text/javascript">
$(document).ready(function() {
bibtexify("#bibtex", "bib-publication-list");
});
</script>
And voilà!
Optionally, you can add the Academicons and fontawesome stylesheets, using
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/jpswalsh/academicons@1/css/academicons.min.css">
to obtain the icons as pictured above. This is optional.
When calling bibtexify
, two options are mandatory:
- the
id
of thepre
element containing the bibliography, - the
id
of thediv
element containing the table that will display the references.
The bibtexify function also accepts an optional third parameter for configuration options. These options include:
option | arguments |
---|---|
lang | Language to use. Now support en (English, default) and fr (Français). |
visualization | A boolean to control addition of the visualization. Defaults to true . |
sorting | Control the default sorting of the list. Defaults to [[0, "desc"], [1, "desc"]] . See https://datatables.net/reference/api/#fnSort for details on formatting. |
datatable | Pass options to the datatable library used to create the table of publications. See https://datatables.net/reference/api/ for available options. |
defaultYear | Entries without a year will use this as year. Defaults to "To Appear" if lang is en (default), "À paraître" if lang is fr . |
An example of such usage would be:
bibtexify("#bibtex", "bib-publication-list", {'defaultYear': '2001', 'lang': 'fr'});
There is a Makefile for building with make. The minified version requires minifier. On debian, a simple
sudo apt-get install -y minify
will take care of this dependency. Maybe this version would work as well, but it hasn't been tested.
I list here some approaches that, essentially, "convert bib
files plus some input into html
", either dynamically or statically.
The BibBase tool seems to offer interesting options, but it is a commercial solution.
Pandoc can be used to generate a html file from a BibTex file, possibly splitting it (cf. also this issue) using a lua filter.
The htmlbib project project can be tested directly on-line.
This code uses some great libraries: jQuery, DataTables, and JavaScript BibTeX Parser1.
This is a fork of bib-publication-list, which is itself a fork of bib-publication-list that I created for personal use.
The main changes are:
- Updated DataTables to 1.13.1,
- Added support for
doi
andeprint
fields. - Added support for Academicons and fontawesome2.
- Changed some styles,
- Improved example files,
- Added support for French in addition to English,
- Generally clarifying the documentation.
The previous fork added the following:
- More flexible HTML structure
- Use of flexbox for a more responsive behavior
- Updated build tools
- Removed deprecated code from old node versions
- Switched JS minifier to uglify-js to improve minification
- Some minor changes in the CSS style
- Fixed some types of BibTex content requiring fields that are not actually required by BibTex standard
- Introduced the use of "et al." for publications with more than 6 authors
Unfortunately, the licence under which this code was originally written is unknown, and the authors have not responded to my request, so I am unable to place this code under any licence. If it was up to me, I'd use the WTFPL, and all my commits can be considered under that licence (that allows you to re-use my code with a different licence if you wish to do so).
It used to be the case that the bibtex could be loaded from a file. This feature seems to be broken now (and to have been unreliable in the past) but here is what the original author wrote:
Personally I prefer including it in the HTML, though. This way, browsers without JavaScript enabled get at least to see the bibtex instead of a blank page. This causes an ugly-looking flash of unstyled content, though.
bibtexify("example-biblist.bib", "bib-publication-list");
If you want to fix the flash of unstyled content, you can hide the #bibtex element and make it visible when JavaScript is disabled. To do that, add
#bibtex { display: none; }
to your CSS and
<noscript><style>#bibtex { display: block; }</style></noscript>
to your HTML.
The possibility of adding links to tweeter accounts was also deprecated, and was removed.
Footnotes
-
This latter library could probably be replaced by bibtexParseJS with benefits. ↩
-
To use it, remember to include the fonts, using
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"><link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/jpswalsh/academicons@1/css/academicons.min.css">
, as presented in some of the examples. ↩