0.1.0 • Published 9 years ago
quaint-katex v0.1.0
quaint-katex
Katex support for Quaint
Install
In your Quaint project directory, run the command:
quaint --setup katexUsage
The plugin defines two operators:
$+[...]inserts math inline$$ ...displays one or more equations
For example:
Inline math! $+[x_1 + x_2]
Display math!
$$ \sum_{i=1}^{1000} x_i + y_i^2 + z_i^3Instead of LaTeX's awkward line break syntax, you can use bullet
points in the environment created by $$ to list multiple equations,
for example:
$$
* x & = y + z
* x - y & = zWrap with a class
Instead of an environment, or in addition to it, you may specify class descriptions and an id for an equations block:
.my-class#some-id $$
* x & = y + z
* x - y & = zThe above will wrap the equation with <div class="my-class" id="some-id">...</div>,
which means you can easily customize the display of various equations.
Options
There are no options at the moment.