# Latex Paper Authoring

> amsmath / amsthm scaffold, theorem environments, figure & equation cross-refs, journal templates.

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

---


# LaTeX paper authoring

- Scaffold: `\documentclass{amsart}` (or the journal template), `amsmath`, `amsthm`, `amssymb`, `mathtools`, `hyperref` (last), `cleveref`.
- Theorems: `\newtheorem{thm}{Theorem}[section]` plus `lem`, `prop`, `cor`, `defn`, `rem`.
- Cross-references through `\label{eq:foo}` + `\cref{eq:foo}` — never hard-code numbers.
- Compile with **`latex_compile`** (tectonic in the sandbox); ship the PDF via **`latex_get_pdf`**.
- For Overleaf-hosted work, pull with **`overleaf_pull_project`**, edit locally, push with **`overleaf_push_project`** + a clear commit message.

