From d51bd29402cc2bba2fe524878d6dd7fe86971423 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Frederik=20M=C3=B6llers?= Date: Fri, 27 Mar 2026 00:09:32 +0100 Subject: [PATCH] Add notes to entries (in addition to comments) --- bibtexbrowser.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bibtexbrowser.php b/bibtexbrowser.php index 3d06ca7..d474519 100755 --- a/bibtexbrowser.php +++ b/bibtexbrowser.php @@ -2588,6 +2588,10 @@ function JanosBibliographyStyle($bibentry) { if ($bibentry->hasField('comment')) { $result .= " (".$bibentry->getField("comment").")"; + // some notes (e.g. "accepted for publishing")? + if ($bibentry->hasField('note')) { + $result .= " (".$bibentry->getField("note").")"; + // add the Coin URL $result .= "\n".$bibentry->toCoins();