BookBibliographyEntry
data class BookBibliographyEntry(val citationKey: String, val title: String?, val author: String?, val year: String?, val publisher: String?, val editor: String? = null, val volume: String? = null, val series: String? = null, val address: String? = null, val edition: String? = null, val extraFields: Map<String, String> = emptyMap()) : BibliographyEntry
A bibliography entry for a book (BibTeX type book
).
Parameters
citationKey
the unique identifier for the entry
title
the title of the book
author
the author(s) of the book
year
the year of publication
publisher
the publisher of the book
editor
the editor(s) of the book, if applicable
volume
the volume number, if applicable
series
the series name, if applicable
address
the address of the publisher, if applicable
edition
the edition of the book, if applicable
Properties
Link copied to clipboard
Link copied to clipboard
Any additional fields that are not standard in the bibliography entry. This allows for flexibility in including custom metadata.
Link copied to clipboard
Given a BibliographyEntry with the author property in the format "Last, First and Last, First", generates structured author information.