Skip to content

Commit

Permalink
serializers: improve book section bibtex serializer
Browse files Browse the repository at this point in the history
  • Loading branch information
tmorrell authored Dec 20, 2024
1 parent b06565c commit df01d1d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion invenio_rdm_records/resources/serializers/bibtex/schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,10 @@ class BibTexSchema(BaseSerializerSchema, CommonFieldsMixin):
BibTexFormatter.book,
BibTexFormatter.booklet,
],
"publication-section": [BibTexFormatter.incollection],
"publication-section": [
BibTexFormatter.in_collection,
BibTexFormatter.in_book,
],
"publication-article": [BibTexFormatter.article],
"publication-preprint": [BibTexFormatter.unpublished],
"publication-thesis": [BibTexFormatter.thesis],
Expand Down

0 comments on commit df01d1d

Please sign in to comment.