vkaravir / bib-publication-list

Interactive publications lists with JavaScript + Bibtex
132 stars 63 forks source link

Output style #27

Closed johnbaums closed 4 years ago

johnbaums commented 5 years ago

How would I go about modifying the output format? E.g. if I want authors to be shown as last name, first initial.

johnbaums commented 4 years ago

Can be done by modifying:

https://github.com/vkaravir/bib-publication-list/blob/69d9f6e4f8c02753162add929cd947a0e6a6635c/build/bib-list.js#L2551-L2553

to

 authorsStr += author.last 
               + (author.von ? ' ' + author.von + ' ' : ' ') 
               + author.first;