# Plotting

> Creates publication-quality scientific plots. Use when making plots, figures, or visualizations. Applies tueplots TMLR styling, LaTeX rendering, no titles.

- Skill: `tomevault-io/plotting` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add tomevault-io/plotting`
- Raw SKILL.md: https://api.skillmd.com/api/skills/tomevault-io/plotting/raw
- Safety review: pending (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: tomevault-io (https://skillmd.com/u/tomevault-io)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/tomevault-io/plotting

---


# Scientific Plotting

```python
from tueplots import bundles
import matplotlib.pyplot as plt

plt.rcParams.update(bundles.tmlr2023())
plt.rcParams.update({"text.usetex": True})
```

No titles. Save as PDF with `bbox_inches="tight"`.

Use latex to render formula
```python
plt.plot(x,y,label=r"$\sigma$)
```

---
> Converted and distributed by [TomeVault](https://tomevault.io/claim/yallup) — claim your Tome and manage your conversions.
<!-- tomevault:4.0:skill_md:2026-04-13 -->

