The options for the renderLatex function.

interface IRenderOptions {
    host: HTMLElement;
    latexTypesetter: null | IRenderMime.ILatexTypesetter;
    shouldTypeset: boolean;
    source: string;
}

Properties

The host node for the rendered LaTeX.

latexTypesetter: null | IRenderMime.ILatexTypesetter

The LaTeX typesetter for the application.

shouldTypeset: boolean

Whether the node should be typeset.

source: string

The LaTeX source to render.