From 0c199975f2d469ecdfd7efcf2ddd16ffa1dc492b Mon Sep 17 00:00:00 2001
From: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu, 17 Aug 2023 07:55:28 +0000
Subject: [PATCH] various path fixes for links to extensions, fix relative paths in links

---
 content/features/Latex.md |   30 +++++++++++++++++++++++++++---
 1 files changed, 27 insertions(+), 3 deletions(-)

diff --git a/content/features/Latex.md b/content/features/Latex.md
index 04bc366..3c8f6ff 100644
--- a/content/features/Latex.md
+++ b/content/features/Latex.md
@@ -1,8 +1,14 @@
+---
+tags:
+  - plugin/transformer
+---
+
 Quartz uses [Katex](https://katex.org/) by default to typeset both inline and block math expressions at build time.
 
-## Formatting
+## Syntax
 
 ### Block Math
+
 Block math can be rendered by delimiting math expression with `$$`.
 
 ```
@@ -19,21 +25,39 @@
     \,d\xi
 $$
 
+$$
+\begin{aligned}
+a &= b + c \\ &= e + f \\
+\end{aligned}
+$$
+
+$$
+\begin{bmatrix}
+1 & 2 & 3 \\
+a & b & c
+\end{bmatrix}
+$$
+
 ### Inline Math
+
 Similarly, inline math can be rendered by delimiting math expression with a single `$`. For example, `$e^{i\pi} = -1$` produces $e^{i\pi} = -1$
 
 ### Escaping symbols
-There will be cases where you may have more than one `$` in a paragraph at once which may accidentally trigger MathJax/Katex. 
+
+There will be cases where you may have more than one `$` in a paragraph at once which may accidentally trigger MathJax/Katex.
 
 To get around this, you can escape the dollar sign by doing `\$` instead.
 
 For example:
+
 - Incorrect: `I have $1 and you have $2` produces I have $1 and you have $2
 - Correct: `I have \$1 and you have \$2` produces I have \$1 and you have \$2
 
 ## MathJax
+
 In `quartz.config.ts`, you can configure Quartz to use [MathJax SVG rendering](https://docs.mathjax.org/en/latest/output/svg.html) by replacing `Plugin.Latex({ renderEngine: 'katex' })` with `Plugin.Latex({ renderEngine: 'mathjax' })`
 
 ## Customization
+
 - Removing Latex support: remove all instances of `Plugin.Latex()` from `quartz.config.ts`.
-- Plugin: `quartz/plugins/transformers/latex.ts`
\ No newline at end of file
+- Plugin: `quartz/plugins/transformers/latex.ts`

--
Gitblit v1.10.0