ArticleBibliographyEntry
data class ArticleBibliographyEntry(val citationKey: String, val title: String?, val author: String?, val year: String?, val journal: String?, val volume: String?, val number: String?, val pages: String?, val month: String?, val doi: String?, val publisher: String?, val extraFields: Map<String, String> = emptyMap()) : BibliographyEntry
A bibliography entry for an article (BibTeX type article
).
Parameters
citationKey
the unique identifier for the entry
title
the title of the article
author
the author(s) of the article
year
the year of publication
journal
the journal in which the article was published
volume
the volume of the journal
number
the issue number of the journal
pages
the page range of the article
month
the month of publication
doi
the DOI of the article, if available
publisher
the publisher of the journal
Constructors
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.