Browse Source

Add notes to entries (in addition to comments)

staging
Frederik Möllers 3 weeks ago
parent
commit
d51bd29402
  1. 4
      bibtexbrowser.php

4
bibtexbrowser.php

@ -2588,6 +2588,10 @@ function JanosBibliographyStyle($bibentry) {
if ($bibentry->hasField('comment')) { if ($bibentry->hasField('comment')) {
$result .= " (".$bibentry->getField("comment").")"; $result .= " (".$bibentry->getField("comment").")";
// some notes (e.g. "accepted for publishing")?
if ($bibentry->hasField('note')) {
$result .= " (".$bibentry->getField("note").")";
// add the Coin URL // add the Coin URL
$result .= "\n".$bibentry->toCoins(); $result .= "\n".$bibentry->toCoins();

Loading…
Cancel
Save