From f4298cf1716d0362df9fc34fa39224e12c6bb706 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Frederik=20M=C3=B6llers?= Date: Fri, 24 Oct 2025 02:26:57 +0200 Subject: [PATCH] Add comment field to JanosBibliographyStyle Print the content of "Comment" fields in JanosBibliographyStyle, similar to how it is done in VancouverBibliographyStyle. --- bibtexbrowser.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bibtexbrowser.php b/bibtexbrowser.php index dcc05d3..b8fa328 100755 --- a/bibtexbrowser.php +++ b/bibtexbrowser.php @@ -2584,6 +2584,10 @@ function JanosBibliographyStyle($bibentry) { $result = implode(", ",$entry).'.'; + // some comments (e.g. acceptance rate)? + if ($bibentry->hasField('comment')) { + $result .= " (".$bibentry->getField("comment").")"; + // add the Coin URL $result .= "\n".$bibentry->toCoins();