Skip to main content

Mathematical notation

<time datetime="2019-03-08 00:00:00 &#43;0000 UTC">March 08 2019</time><span class="px-2 text-primary-500">&middot;</span><time datetime="2023-08-19 21:44:35 -0500 CDT">Updated: August 19 2023</time><span class="px-2 text-primary-500">&middot;</span><span>150 words</span><span class="px-2 text-primary-500">&middot;</span><span title="Reading time">1 min</span>
Sample Katex Maths Shortcodes
Table of Contents

KaTeX can be used to render mathematical notation within articles.

Blowfish will only bundle the KaTeX assets into your project if you make use of mathematical notation. In order for this to work, simply include the katex shortcode within the article. Example below:

{{< katex >}}

Any KaTeX syntax on that page will then be automatically rendered. Use the online reference of supported TeX functions for the available syntax.

Inline notation #

Inline notation can be generated by wrapping the expression in \\( and \\) delimiters.

Example:

% KaTeX inline notation
Inline notation: \\(\varphi = \dfrac{1+\sqrt5}{2}= 1.6180339887…\\)

Inline notation: \(\varphi = \dfrac{1+\sqrt5}{2}= 1.6180339887…\)

Block notation #

Alternatively, block notation can be generated using $$ delimiters. This will output the expression in its own HTML block.

Example:

% KaTeX block notation
$$
 \varphi = 1+\frac{1} {1+\frac{1} {1+\frac{1} {1+\cdots} } }
$$

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