KaTeX

UI Extension

KaTeX is the fastest math typesetting library for the web, rendering LaTeX math notation with server-side and client-side support.

Status
Planned
Supported Version
TBD
Licensing
Open Source
Priority
Rank #103
KEY FEATURES
LaTeX math
Fast rendering
Server-side support
Auto-render
Copy as LaTeX
Configurable
No dependencies
Usage Example

Here's how you'll use KaTeX with Oorian once the extension is available:

Java
// Create and configure KaTeX component
KaTeX component = new KaTeX();
component.setWidth("100%");
component.setHeight("400px");

// Configure component options
component.setEnabled(true);

// Register for events using Oorian's event model
component.registerForEvent(this, KaTeXEvent.class);

// Add to your page
container.addElement(component);

Note: This is a preview of the expected API. The actual implementation may vary slightly when released.