BibInternal.entriesConstant
    const entries = [
        :article,
        :book,
        :booklet,
        :inbook,
        :incollection,
        :inproceedings,
        :manual,
        :mastersthesis,
        :misc,
        :phdthesis,
        :proceedings,
        :techreport,
        :unpublished,
    ]

    List of possible entries (currently based on bibtex). Keep it sorted for readability.

    source
    BibInternal.fieldsConstant
    const fields = [
        :address,
        :annote,
        :archivePrefix,
        :author,
        :booktitle,
        :chapter,
        :crossref,
        :edition,
        :editor,
        :eprint,
        :howpublished,
        :institution,
        :journal,
        :key,
        :month,
        :note,
        :number,
        :organization,
        :pages,
        :primaryClass,
        :publisher,
        :school,
        :series,
        :title,
        :type,
        :volume,
        :year
    ]

    List of possible fields (currently based on bibtex). Keep it sorted for readability

    source
    BibInternal.arxive_urlMethod
    arxive_url(fields::Fields)

    Make an arxiv url from an eprint entry. Work with both old and current arxiv BibTeX format.

    source
    BibInternal.spaceMethod
    space(field::Symbol)

    Return the amount of spaces needed to export entries, for instance to BibTeX format.

    source