Tags cheatsheet shortcuts
La-Tex Suite Snippets
📝 Core Environments & Math Mode
| Trigger | Replacement / Action | Visual Result |
|---|---|---|
mk | $$ | (Enters inline math mode) |
dm | $$...$$ | (Enters display math mode) |
beg | \begin{...} \end{...} | (Creates an environment block) |
text or " | \text{...} | |
pmat / bmat | \begin{pmatrix}... | (Creates a matrix block) |
cases | \begin{cases}... | (Creates a piecewise block) |
iden3 | (JS Function) | (Auto-generates 3x3 Identity Matrix) |
🔤 Greek Letters (Standard & Capital)
For capital Greek letters, just capitalise the trigger letter (e.g., @G instead of @g).
| Trigger | Replacement | Visual Result |
|---|---|---|
@a | \alpha | |
@b | \beta | |
@g / @G | \gamma / \Gamma | / |
@d / @D | \delta / \Delta | / |
@e / :e | \epsilon / \varepsilon | / |
@z | \zeta | |
@t / @T | \theta / \Theta | / |
@s / @S | \sigma / \Sigma | / |
@l / @L | \lambda / \Lambda | / |
@o / ome | \omega | |
@O / Ome | \Omega |
➕ Basic Operations & Exponents
| Trigger | Replacement | Visual Result |
|---|---|---|
sr | ^{2} | |
cb | ^{3} | |
rd | ^{...} | |
_ | _{...} | |
sts | _{\text{...}} | |
sq | \sqrt{...} | |
/ | \frac{...}{...} | |
ee | e^{...} | |
invs | ^{-1} | |
+- / -+ | \pm / \mp | / |
xx | \times | |
** / cdot | \cdot |
⌨️ Auto-Formatting (Regex Magic)
These triggers apply automatically when you type specific combinations. You don’t need to press tab.
| You Type… | It Replaces With… | Visual Result |
|---|---|---|
x1 | x_{1} | |
xnn / xii | x_{n} / x_{i} | / |
xhat / ybar | \hat{x} / \bar{y} | / |
vvec / ddot | \vec{v} / \ddot{d} | / |
mbfA / A,. | \mathbf{A} | |
mcalL | \mathcal{L} | |
sin / ln | \sin / \ln | / |
\alpha sr | \alpha^{2} |
♾️ Symbols & Relations
| Trigger | Replacement | Visual Result |
|---|---|---|
ooo | \infty | |
... | \dots | |
=== | \equiv | |
!= | \neq | |
>= / <= | \geq / \leq | / |
>> / << | \gg / \ll | / |
simm | \sim | |
prop | \propto | |
-> / <-> | \to / \leftrightarrow | / |
=> | \implies | |
and / orr | \cap / \cup | / |
inn / notin | \in / \not\in | / |
📈 Calculus, Limits & Sums
| Trigger | Replacement | Visual Result |
|---|---|---|
sum | \sum_{i=1}^{N} | |
prod | \prod_{i=1}^{N} | |
lim | \lim_{n \to \infty} | |
par | \frac{\partial y}{\partial x} | |
ddt | \frac{d}{dt} | |
\int | \int x \, dx | |
dint | \int_{0}^{1} x \, dx | |
oint | \oint | |
nabl | \nabla | |
tayl | Taylor Series |
[ ] Brackets, Visuals, & Bounds
| Trigger | Replacement | Visual Result |
|---|---|---|
eval | \bigg | |
ceil / floor | \lceil ... \rceil | / |
U | \underbrace{...}_{...} | |
lr( / lr[ | \left( ... \right) | |
avg | \langle ... \rangle | |
norm | \lvert ... \rvert | |
box | \boxed{...} |
⚛️ Physics, Chem, & Quantum
| Trigger | Replacement | Visual Result |
|---|---|---|
kbt | k_{B}T | |
msun | M_{\odot} | |
dag | ^{\dagger} | |
ox | \otimes | |
bra / ket | \bra{...} / \ket{...} | |
brk | \braket{... | …}` |
he4 | {}^{4}_{2}He | |
deg | ^{\circ} | |
cel | ^{\circ}\mathrm{C} |
Math Block Size
Obsidian supports the following LaTeX sizes, from smallest to largest:
\tiny\scriptsize\small\normalsize(Default)\large\Large\LARGE\huge\Huge
Method 2: Use \displaystyle (Best for fractions)
Sometimes equations (like fractions) look too small in line. If you want to force an equation block to use the full, large “display” format, add \displaystyle at the start of your code.
Math Color
If you meant the default, built-in text-based colors allowed by MathJax without using Hex codes, here is the standard list: [12]
| Primary Colors [13] | Soft / Intermediate Colors | Grayscales |
|---|---|---|
red | orange | white |
blue | pink | lightgray |
green | purple | gray |
yellow | violet | darkgray |
cyan | magenta | black |
magenta | olive | |
teal | brown | |
lime |
Canvas MindMap
Note: For these shortcuts to work, you must be in Select Mode, meaning the card itself is highlighted, not the text inside it. Just hit Escape if your cursor is blinking inside the text box
Creating Nodes
- Create Child Node:
Tab(Branches out to a new lower level) - Create Sibling Node:
Enter(Creates a new “brother” card on the exact same level - Create Directional Child Node:
Cmd/Ctrl+Shift+Arrow Keys(↑,↓,←,→) - Create Floating Node:
Cmd/Ctrl+Arrow Keys(↑,↓,←,→) (Creates a completely disconnected node nearby)
Navigation
- Move Selection Between Nodes:
Alt+Arrow Keys(↑,↓,←,→)
Helpful Commands (Via Command Palette)
You can trigger these by opening the Obsidian Command Palette (Cmd/Ctrl + P) and typing “Canvas MindMap”:
- Auto layout: Instantly cleans up and aligns messy or overlapping branches.
- Select node’s tree: Highlights a parent node and all of the child nodes connected to it.
- Change color for node’s edges: Allows you to quickly color-code the connection lines for a specific branch.