diff --git a/bibtexbrowser.php b/bibtexbrowser.php index 3d06ca7..bf5d535 100755 --- a/bibtexbrowser.php +++ b/bibtexbrowser.php @@ -2587,6 +2587,12 @@ function JanosBibliographyStyle($bibentry) { // some comments (e.g. acceptance rate)? if ($bibentry->hasField('comment')) { $result .= " (".$bibentry->getField("comment").")"; + } + + // some notes (e.g. "accepted for publishing")? + if (($type!="misc") && $bibentry->hasField('note')) { + $result .= " (".$bibentry->getField("note").")"; + } // add the Coin URL $result .= "\n".$bibentry->toCoins();