From f20af8f28f668483ad30164e1a2f40b849bff2cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Frederik=20M=C3=B6llers?= Date: Fri, 27 Mar 2026 00:35:16 +0100 Subject: [PATCH] Fix JanosBibliographyStyle and add notes Fix missing brace in if-statement for comments in JanosBibliographyStyle Add notes to entries (in addition to comments) --- bibtexbrowser.php | 6 ++++++ 1 file changed, 6 insertions(+) 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();