@mathjax/src
    Preparing search index...
    MathtoolsUtil: {
        addPairedDelims(parser: default, cs: string, args: string[]): void;
        checkAlignment(parser: default, name: string): EqnArrayItem;
        getScript(parser: default, name: string, pos: string): MmlNode;
        plusOrMinus(name: string, n: string): string;
        setDisplayLevel(mml: MmlNode, style: string): void;
        spreadLines(mtable: MmlNode, spread: string): void;
    } = ...

    Utility functions for the Mathtools package.

    Type declaration

    • addPairedDelims: function
      • Add a paired delimiter to the list of them.

        Parameters

        • parser: default

          The current TeX parser

        • cs: string

          The control sequence for the paired delimiters.

        • args: string[]

          The definition for the paired delimiters. One of: [left, right] [left, right, body, argcount] [left, right, body, argcount, pre, post]

        Returns void

    • checkAlignment: function
    • getScript: function
      • Parse a \prescript argument, with its associated format, if any.

        Parameters

        • parser: default

          The active tex parser.

        • name: string

          The name of the calling macro (\prescript).

        • pos: string

          The position for the argument (sub, sup, arg).

        Returns MmlNode

        The parsed MML version of the argument.

    • plusOrMinus: function
      • Check if a string is a number and return it with an explicit plus if there isn't one.

        Parameters

        • name: string

          The name of the macro doing the checking.

        • n: string

          The string to test as a number.

        Returns string

        The number with an explicit sign.

    • setDisplayLevel: function
    • spreadLines: function
      • Adjust the line spacing for a table.

        Parameters

        • mtable: MmlNode

          The mtable node to adjust (if it is a table).

        • spread: string

          The dimension to change by (number-with-units).

        Returns void