Bug 38752 - BibTeX export include 245b
Summary: BibTeX export include 245b
Status: NEW
Alias: None
Product: Koha
Classification: Unclassified
Component: MARC Bibliographic data support (show other bugs)
Version: unspecified
Hardware: All All
: P5 - low enhancement
Assignee: Bugs List
QA Contact: Testopia
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2024-12-19 12:11 UTC by Lari Taskula
Modified: 2024-12-20 08:32 UTC (History)
1 user (show)

See Also:
Change sponsored?: ---
Patch complexity: ---
Documentation contact:
Documentation submission:
Text to go in the release notes:
Version(s) released in:
Circulation function:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Lari Taskula 2024-12-19 12:11:11 UTC
C4/Record.pm marc2bibtext now has:

title     => $record->subfield("245", "a") || "",

We would also like to include 245b subtitle here.
Comment 1 Alexander Wagner 2024-12-20 08:32:06 UTC
Note that for the newer biblatex there are also separate fields for subtitles. (`subtitle` and `titleaddon`). I think 245__b should end up in `subtitle`, `titleaddon` is more for descriptive notices (e.g. `Proceedings of the...`)

In any case one is left with some incompatibility between legacy bibtex and biblatex here. It might be the user friendliest way to go for the separate `subtitle`-field of biblatex as it's easy to join it with `title` and the necessary separator char for those who use legacy bibtex and it involves less typing to remove than to add, and it would not "break" biblatex compatiblity as well.