From 7747158a770d8c006dab5dcc0d2c9a9fd13c80fc Mon Sep 17 00:00:00 2001 From: Stefan Huber Date: Tue, 3 Sep 2024 09:47:24 +0200 Subject: [PATCH] bib2html.py: Use journaltitle --- bib2html.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bib2html.py b/bib2html.py index 7a1b7d9..ae64a1c 100755 --- a/bib2html.py +++ b/bib2html.py @@ -76,7 +76,9 @@ def format_authors(entry): def format_details_article(entry): - where = format_field(entry, 'journal') + where = format_field(entry, 'journaltitle') + if where == "": + where = format_field(entry, 'journal') line = [] line.append(format_field(entry, 'pages', pre='pp. ')) -- 2.39.5