Closed johnbaums closed 4 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.
last name, first initial
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;
How would I go about modifying the output format? E.g. if I want authors to be shown as
last name, first initial
.