Getting Started
Installation
From Community Plugins
- Open Obsidian Settings → Community plugins
- Click Browse and search for "LaTeX Equation Referencer"
- Click Install, then Enable
Manual Installation
- Download
main.js,manifest.json, andstyles.cssfrom the latest release - Create folder:
<vault>/.obsidian/plugins/math-booster/ - Copy the downloaded files into this folder
- Restart Obsidian and enable the plugin
Your First Equation
Step 1: Create a Display Math Block
Write a display math block using $$ delimiters:
Step 2: Add an Equation ID
Add a LaTeX comment with a unique ID on a new line before the closing $$:
ID Format
IDs must start with eq- followed by alphanumeric characters and hyphens. Examples: eq-main, eq-theorem-1, eq-proof-step-2
Step 3: Reference the Equation
Type \eqref to trigger the autocomplete menu, then select your equation:
Step 4: View the Result
The plugin automatically:
- Adds
\tag{1}to number the equation - Renders the reference as a clickable link showing
(1) - Shows a preview popup when you hover over the link
Basic Workflow
graph LR
A[Write equation] --> B[Add % id: eq-xxx]
B --> C[Type \eqref]
C --> D[Select from suggestions]
D --> E[Link inserted]
Commands
Access these commands via the Command Palette (Ctrl/Cmd + P):
| Command | Description |
|---|---|
| Insert display math | Insert $$...$$ block with ID template |
| Search equations in active note | Open equation search modal |
| Fix callout equations in active note | Fix indentation in callout math blocks |
| Export current file to PDF | Open PDF export dialog |
| Insert LaTeX Snippet | Insert a saved LaTeX snippet |
Next Steps
- Equation Numbering - Learn about numbering styles and sub-equations
- PDF Export - Export notes to PDF with equations
- Settings Reference - Configure all plugin options