hugo-theme-minima/exampleSite/content/math-typesetting.md
2023-03-16 00:22:34 +08:00

1,003 B

author title date description math tags
Mivinci Math Typesetting 2020-07-18T10:52:59+08:00 A brief guide to write mathematical notation. true
KaTex
markdown

Mathematical notation in a Hugo project can be enabled by using third party JavaScript libraries like KaTeX the one that Minima uses. Here's what you can do in the configuration file to enable it.

math:
  enable: false
  provider: katex

Examples

The following are some examples of mathematical notations with KaTeX that are pretty much like LaTeX's.

Block

\varphi = 1+\frac{1}{1+\frac{1}{1+\frac{1} {1+\cdots}}} 

wiil be rendered as:

\varphi = 1+\frac{1}{1+\frac{1}{1+\frac{1} {1+\cdots}}}

Inline

Pythagorean theorem can be written as $a^2+b^2=c^2$ where *a*, *b* and *c* are the length of legs of a triangle.

will be rendered as:

Pythagorean theorem can be written as a^2+b^2=c^2 where a, b and c are the length of legs of a triangle.