Mathematical notation in a Hugo project can be enabled by using third party JavaScript libraries.
This theme supports KaTeX.
- When using a
math
code block or katex
shortcode, KaTeX is activated automatically. - To manually enable KaTeX globally set the parameter
math
to true
in a project’s configuration file. - To enable KaTeX on a per page basis include the parameter
math: true
in the frontmatter of the content files.
Note: Use the online reference of Supported TeX Functions
Examples
Inline
Such as \\(\KaTeX\\)
(KATEX) and $\LaTeX$
(LATEX).
Block
(φ=21+5=1.6180339887…)
φ=1+1+1+1+⋯111
Math code block(recommended)
See GitLab Flavored Markdown.
The probability of getting k heads when flipping n coins is:
P(E)=(kn)pk(1−p)n−k(1) Multiple lines via shortcode(recommended)
1{{< katex >}}
2FORMULA
3{{< /katex >}}
markdown
Eo1=21(targeto1−outo1)2=21(0.01−0.75136507)2=0.274811083Eo2=0.023560026Etotal=Eo1+Eo2=0.274811083+0.023560026=0.298371109
Comments