Interface TexOpts

    interface TexOpts {
        aside?: boolean;
        display?: "inline" | "block";
        font?: string;
        highlightColor?: string;
        opacity?: Val<number>;
        origin?: Val<V>;
        rotate?: Val<number>;
        scale?: Val<V>;
        size?: number;
        translate?: Val<V>;
    }
    Hierarchy
    Index

    Properties

    aside?: boolean
    display?: "inline" | "block"

    "inline" (default) or "block" display style. Maps to Temml's displayMode — bigger fractions, limits above/below, \begin{…}.

    font?: string

    Font family. Defaults to tokens.mathFont.

    highlightColor?: string

    Background tint applied while a part's highlighted signal is true. Default: tokens.tex.highlightColor.

    opacity?: Val<number>
    origin?: Val<V>
    rotate?: Val<number>
    scale?: Val<V>
    size?: number

    Font size in user units. Defaults to tokens.fontSize.

    translate?: Val<V>