Interface ILatexTypesetter

The interface for a LaTeX typesetter.

interface ILatexTypesetter {
    typeset(element): void;
}

Hierarchy (view full)

Implemented by

    Methods

    Methods

    • Typeset a DOM element.

      Parameters

      • element: HTMLElement

        the DOM element to typeset. The typesetting may happen synchronously or asynchronously.

      Returns void