@mathjax/src
    Preparing search index...

    Interface CommonMmultiscriptsClass<N, T, D, JX, WW, WF, WC, CC, VV, DD, FD, FC>

    The CommonMmlultisciptsClass interface

    interface CommonMmultiscriptsClass<
        N,
        T,
        D,
        JX extends CommonOutputJax<N, T, D, WW, WF, WC, CC, VV, DD, FD, FC>,
        WW extends CommonWrapper<N, T, D, JX, WW, WF, WC, CC, VV, DD, FD, FC>,
        WF extends
            CommonWrapperFactory<N, T, D, JX, WW, WF, WC, CC, VV, DD, FD, FC>,
        WC extends CommonWrapperClass<N, T, D, JX, WW, WF, WC, CC, VV, DD, FD, FC>,
        CC extends CharOptions,
        VV extends VariantData<CC>,
        DD extends DelimiterData,
        FD extends FontData<CC, VV, DD>,
        FC extends FontDataClass<CC, VV, DD>,
    > {
        new CommonMmultiscriptsClass(
            factory: WF,
            node: MmlNode,
            parent?: WW,
        ): WW;
        new CommonMmultiscriptsClass(
            factory: WrapperFactory<
                MmlNode,
                MmlNodeClass,
                WW,
                WrapperClass<MmlNode, MmlNodeClass, WW>,
            >,
            node: MmlNode,
            ...args: any[],
        ): WW;
        BOLDVARIANTS: { [name: string]: StringMap };
        ITALICVARIANTS: { [name: string]: StringMap };
        kind: string;
        removeStyles: string[];
        skipAttributes: { [name: string]: boolean };
        styles: StyleJson;
        useIC: boolean;
        addStyles<JX>(styles: StyleJsonSheet, jax: JX): void;
    }

    Type Parameters

    Hierarchy (View Summary)

    Index

    Constructors

    Properties

    BOLDVARIANTS: { [name: string]: StringMap }

    The translation of mathvariant to bold styles, or to remove bold from a mathvariant.

    ITALICVARIANTS: { [name: string]: StringMap }

    The translation of mathvariant to italic styles, or to remove italic from a mathvariant.

    kind: string

    The wrapper kind

    removeStyles: string[]

    Styles that should not be passed on from style attribute

    skipAttributes: { [name: string]: boolean }

    Non-MathML attributes on MathML elements NOT to be copied to the corresponding DOM elements. If set to false, then the attribute WILL be copied. Most of these (like the font attributes) are handled in other ways.

    styles: StyleJson

    Any styles needed for the class

    useIC: boolean

    Set to true for munderover/munder/mover/msup (Appendix G 13)

    Methods