You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
870 B
870 B
+++ title = "Indented equations block" description = "Testing equations with mathjax --- indented or not." tags = ["equations", "mathjax", "indented"] draft = false +++
No indentation
\begin{equation} \label{eq:1} C = W\log_{2} (1+\mathrm{SNR}) \end{equation}
With indentation
ox-hugo Issue #128
\begin{equation} \label{eq:2} C = W\log_{2} (1+\mathrm{SNR}) \end{equation}
Above equation (LaTeX environment) is the same as the first one, but:
-
It is indented in the Org source.
This test verifies that the indentation is auto-removed in the exported Markdown file.
-
It has a different label (
\label{eq:2}instead of\label{eq:1}); Mathjax requires the equation labels to be unique.