Periodic Table Database Schema - v0.6.3
    Preparing search index...

    Type Alias InbookReference

    InbookReference: Expand<
        BaseReference<INBOOK> & RequireExactlyOneFrom<
            BibTeXFields,
            "author"
            | "editor",
        > & RequireAtLeastOne<
            StrictSubset<
                BibTeXFields,
                "booktitle"
                | "chapter"
                | "pages"
                | "publisher"
                | "title"
                | "year",

                    | "address"
                    | "edition"
                    | "month"
                    | "note"
                    | "number"
                    | "reportType"
                    | "series"
                    | "volume",
            >,
            "chapter"
            | "pages",
        >,
    >

    Represents a specific part or chapter within a book.

    • Constraint: Choice between primary author or book editor.
    • Constraint: Requires at least a chapter number or page range.
    • Mandatory: booktitle, publisher, title, year
    • Optional: address, edition, month, note, number, reportType, series, volume