Interface RawBackwardsCopyTemplateRow

Represents a row in the {{copied}} template. These should represent their actual values instead of raw parameters from the template.

interface RawBackwardsCopyTemplateRow {
    articlename?: string;
    author?: string;
    authorlist?: string;
    date?: string;
    display_authors?: string;
    monthday?: string;
    org?: string;
    title?: string;
    url?: string;
    year?: string;
}

Implemented by

Properties

articlename?: string

Alias of title.

author?: string

Used to input an author.

authorlist?: string

Used to input a list of authors, usually separated by a semicolon. Overrides author.

date?: string

The date of publishing for this publication.

display_authors?: string

Whether to display authors or not.

monthday?: string

The month and day of publishing for this publication.

org?: string

The publisher of the publication.

title?: string

The name of the article published.

url?: string

The URL of the publication.

year?: string

The year of publication for this publication.