mCs
mCs

Reputation: 2921

Equation numbering in pelican with mathjax

I use render_math Pelican plugin to use latex, however it is not (by default) providing equation numbering. How can this be achieved?

Upvotes: 1

Views: 200

Answers (1)

charlesreid1
charlesreid1

Reputation: 4841

If you add an eqnarray latex tag to your equation, as in $$ \begin{eqnarray} <your equation here> \end{eqnarray} $$, it will add a numbered equation to the MathJax equation.

(Side note: if it is a multi-line equation, use \nonumber to limit the numbering.)

Upvotes: 2

Related Questions