BibliographyEntry

Properties

Link copied to clipboard
abstract val author: String?

The author(s) of the work.

Link copied to clipboard
abstract val citationKey: String

The unique identifier for the bibliography entry, typically used as a citation key. This is often a string that can be used to reference the entry in citations.

Link copied to clipboard
abstract val extraFields: Map<String, String>

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.

Link copied to clipboard
abstract val title: String?

The title of the work

Link copied to clipboard
abstract val year: String?

The year of publication.

Functions

Link copied to clipboard
abstract fun <T> accept(visitor: BibliographyEntryVisitor<T>): T