latex

latex is a skill for Claude Code, Codex from LuuOW/meridian-mcp. It costs 50 tokens per session (1,428 once invoked), scanned A, original, MIT.

A guide to writing mathematical documents and equations with LaTeX, a text-based system for producing formatted papers and formulas. It also covers BibTeX citations and equation rendering on websites with KaTeX or MathJax.

In plain words
What is it for?
Typesetting equations, structuring papers, formatting arXiv preprints, managing references, and converting mathematical prose into symbols.
Why use it?
It helps turn mathematical ideas into consistent notation and documents that can be submitted as academic papers or displayed online.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Typesetting equations, structuring papers, formatting arXiv preprints, managing references, and converting mathematical prose into symbols.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/luuow/meridian-mcp/latex
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add LuuOW/meridian-mcp --skill latex
Clone the repo
git clone --depth 1 https://github.com/LuuOW/meridian-mcp

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for latex

README.md
[![agentmods](https://agentmods.dev/badge/skills/luuow/meridian-mcp/latex/github.svg)](https://agentmods.dev/skills/luuow/meridian-mcp/latex)
Your own site
<a href="https://agentmods.dev/skills/luuow/meridian-mcp/latex"><img src="https://agentmods.dev/badge/skills/luuow/meridian-mcp/latex/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for latex

Your own site · 80×15
<a href="https://agentmods.dev/skills/luuow/meridian-mcp/latex"><img src="https://agentmods.dev/badge/skills/luuow/meridian-mcp/latex.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 50 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,428 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00050 $0.01428
Opus 5 $0.00025 $0.00714
Sonnet 5 $0.00010 $0.00286
Haiku 4.5 $0.00005 $0.00143

Measured 10d ago against content hash 774facb09321, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

latex scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/latex/SKILL.md · 145 lines

How it starts

The opening of the file, as written. The whole thing — 145 lines — stays where its author put it; the contents beside it link to each section on GitHub.

latex

Production mathematical typesetting for arXiv preprints, academic papers, and web-rendered equations. Covers the full pipeline from mathematical intuition → LaTeX notation → rendered output, for both document (PDFLaTeX/XeTeX) and web (KaTeX/MathJax) targets.

Core Math Environments

% Inline math — use sparingly, only for simple symbols in prose
The energy $E = mc^2$ follows from special relativity.

% Display math — numbered equation
\begin{equation}
  \mathcal{L} = \bar{\psi}(i\gamma^\mu \partial_\mu - m)\psi
  \label{eq:dirac}
\end{equation}

% Unnumbered display
\[
  \hat{H}\psi = E\psi
\]

% Multi-line aligned (align not eqnarray)
\begin{align}
  \nabla \cdot \mathbf{E} &= \frac{\rho}{\varepsilon_0} \\
  \nabla \times \mathbf{B} &= \mu_0 \mathbf{J} + \mu_0\varepsilon_0 \frac{\partial \mathbf{E}}{\partial t}
  \label{eq:maxwell}
\end{align}

Common Physics Notation

% Quantum operators
\hat{a},\, \hat{a}^\dagger          % annihilation / creation
\langle \psi | \hat{O} | \phi \rangle  % Dirac bracket
\hbar\omega                           % reduced Planck × frequency

% Statistical mechanics
Z = \mathrm{Tr}\left[e^{-\beta \hat{H}}\right]
\langle O \rangle = -\frac{\partial \ln Z}{\partial \lambda}

% General relativity
g_{\mu\nu},\quad R_{\mu\nu} - \tfrac{1}{2}g_{\mu\nu}R + \Lambda g_{\mu\nu} = \frac{8\pi G}{c^4}T_{\mu\nu}

% Information / entropy
S = -\sum_i p_i \ln p_i
\mathcal{I}(\rho) = S(\rho \| \sigma) = \mathrm{Tr}[\rho(\ln\rho - \ln\sigma)]

KaTeX Web Rendering

KaTeX is the correct choice for web — faster than MathJax, same quality for standard notation.

// Lazy-load — only when math detected
let _katex = null
async function renderMath(container) {
  const spans = container.querySelectorAll('.math-block, .math-inline')
  if (!spans.length) return
  if (!_katex) _katex = (await import('https://esm.sh/[email protected]')).default
  spans.forEach(el => {
    el.innerHTML = _katex.renderToString(el.dataset.formula, {
      displayMode:  el.classList.contains('math-block'),
      throwOnError: false,
    })
  })
}

Read the full file on GitHub · 145 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 145 lines · 50 tokens per session scan A 774facb09321

Subscribe to this mod's changes

latex is a skill published in the GitHub repository LuuOW/meridian-mcp (0 stars, last pushed yesterday), licensed MIT. It adds 50 tokens to every session and 1,428 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.