@yamlresume/core
    Preparing search index...

    Type Alias PublicationItem

    Represents a single publication, research work, or academic paper.

    PublicationItemSchema for its schema constraints.

    type PublicationItem = {
        computed?: { releaseDate: string; summary: string };
        name: string;
        publisher: string;
        releaseDate?: string;
        summary?: string;
        url?: string;
    }
    Index
    computed?: { releaseDate: string; summary: string }

    Computed values derived during transformation.

    Type Declaration

    • releaseDate: string

      Transformed release date string.

    • summary: string

      Transformed summary string (e.g., LaTeX code).

    name: string

    Name or title of the publication.

    publisher: string

    Publisher of the work.

    releaseDate?: string

    Date of publication (e.g., "2023", "Mar 2023").

    summary?: string

    Summary or abstract of the publication.

    url?: string

    URL related to the publication (e.g., DOI, link).