-
Notifications
You must be signed in to change notification settings - Fork 20
BibBase
Akos Hajdu edited this page Aug 11, 2020
·
2 revisions
BibBase is a free service that can embed automatically generated publication lists from a given .bib
file.
The list is dynamic with various grouping options, drop-down abstracts, etc.
It can also be extended with various custom links (e.g., links to pdf, slides, etc.).
As an example see the publication list of the Theta framework.
In a basic setup, BibBase requires two components:
- A
.bib
file containing the publication data (e.g. publications.bib for Theta). - A webpage including the JS embedding code (e.g. index.html for Theta).
Populate the bib file with the usual entries and fields (see guidelines). The following fields can be used to customize the list display.
-
type
: BibBase provides grouping by type. You can use e.g.Journal
,Conference
, ... -
keywords
: BibBase also provides grouping by keywords. -
abstract
: the abstract is displayed in a drop-down box. -
url_XY
: fields that start with the prefixurl_
will be displayed as a link with labelXY
. For exampleurl_pdf = { http://papers.com/paper.pdf }
will be displayed as a link with labelpdf
pointing to the url. You can use this for pdf, slides, recording, etc.
The publication list can be embedded by providing the url to the bib file in the following snippet:
<script src="https://bibbase.org/show?bib=<URL OF BIB FILE>&jsonp=1&theme=side"></script>