pdf2tex

pdf2tex is a skill for Claude Code, Codex from Calix-L/awesome-latex-skills. It costs 39 tokens per session (2,786 once invoked), scanned A, original, MIT.

A PDF-to-LaTeX reconstruction tool that turns a compiled PDF back into editable LaTeX source. LaTeX source is the text and commands used to generate a formatted technical document.

In plain words
What is it for?
Use it to extract text, headings, equations, tables, figures, captions, references, and document structure from a PDF and rebuild them as LaTeX files.
Why use it?
It helps recover an editable paper when the original source files are lost, while making clear which details cannot be reliably recovered from a PDF.

Skill for Claude CodeCodex

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

Good fit Use it to extract text, headings, equations, tables, figures, captions, references, and document structure from a PDF and rebuild them as LaTeX files.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/calix-l/awesome-latex-skills/pdf2tex
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 Calix-L/awesome-latex-skills --skill pdf2tex
Clone the repo
git clone --depth 1 https://github.com/Calix-L/awesome-latex-skills

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 pdf2tex

README.md
[![agentmods](https://agentmods.dev/badge/skills/calix-l/awesome-latex-skills/pdf2tex/github.svg)](https://agentmods.dev/skills/calix-l/awesome-latex-skills/pdf2tex)
Your own site
<a href="https://agentmods.dev/skills/calix-l/awesome-latex-skills/pdf2tex"><img src="https://agentmods.dev/badge/skills/calix-l/awesome-latex-skills/pdf2tex/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 pdf2tex

Your own site · 80×15
<a href="https://agentmods.dev/skills/calix-l/awesome-latex-skills/pdf2tex"><img src="https://agentmods.dev/badge/skills/calix-l/awesome-latex-skills/pdf2tex.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 39 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,786 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.00039 $0.02786
Opus 5 $0.00019 $0.01393
Sonnet 5 $0.00008 $0.00557
Haiku 4.5 $0.00004 $0.00279

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

Security

Grade A, and why

pdf2tex 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 13d 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.

pdf2tex/SKILL.md · 289 lines

How it starts

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

Role

You are a PDF forensics expert who reconstructs LaTeX source from compiled PDFs. You understand PDF internals — font encoding, glyph positioning, text blocks, and embedded images. You use Python tools to extract structured data, then apply your LaTeX knowledge to write clean, compilable source code.

When to Activate

Activate when the user:

  • Shares a PDF and wants the LaTeX source
  • Lost their .tex file and only has the compiled PDF
  • Needs to edit a paper but only has the camera-ready PDF
  • Says "convert this PDF to LaTeX"
  • Any variation of "pdf2tex", "pdf to tex", "pdf转tex/LaTeX"

Workflow

Phase 1: Quick Assessment

Before extraction, note what CAN and CANNOT be recovered:

Recoverable:

  • Text content and paragraph structure
  • Section headings and hierarchy
  • Math expressions (most, not all)
  • Table structure and cell content
  • Figure placement and captions
  • Citation keys and reference text
  • Document class and packages used (from PDF metadata)

Not reliably recoverable:

  • Exact macros and custom commands
  • Original \newcommand definitions
  • Source-level formatting choices (exact \vspace values)
  • Comment text (stripped during compilation)
  • Input file structure (\input, \include boundaries)
  • Original bibliography database file

Phase 2: Extract Content

Use Python with pymupdf (fitz) to extract structured content.

import fitz
doc = fitz.open("paper.pdf")

# Extract metadata
meta = doc.metadata  # title, author, subject, keywords, creator (TeX engine)

# Extract per-page text blocks with position data
for page in doc:
    blocks = page.get_text("dict")["blocks"]  # text blocks with bbox
    for b in blocks:
        if b["type"] == 0:  # text block
            for line in b["lines"]:
                text = "".join([span["text"] for span in line["spans"]])
                font = line["spans"][0]["font"]  # font name
                size = line["spans"][0]["size"]   # font size
                bbox = b["bbox"]                    # position
                # → record: text, font, size, x, y, width, height

# Extract images
for page_num, page in enumerate(doc):
    for img in page.get_images(full=True):
        xref = img[0]
        base_image = doc.extract_image(xref)
        image_bytes = base_image["image"]
        ext = base_image["ext"]  # png, jpeg, etc.
        # → save as figure_<page>_<xref>.{ext}

Read the full file on GitHub · 289 lines

Files

What ships with it

5 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 13d ago First seen · 289 lines · 39 tokens per session scan A a45fb81767ca

Subscribe to this mod's changes

pdf2tex is a skill published in the GitHub repository Calix-L/awesome-latex-skills (173 stars, last pushed 4mo ago), licensed MIT. It adds 39 tokens to every session and 2,786 once invoked, about $0.0002 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-30.

Related

Other skills, from other repositories

overleaf

Sync and manage Overleaf LaTeX projects from the command line. Pull projects locally, push changes back, compile PDFs, and download compile outputs like .bbl files for arXiv submissions. Use when working with LaTeX, Overleaf, academic papers, or arXiv.

aloth/olcli · 62 tokens

latex-compile

Compile a LaTeX document and fix every error plus aesthetic issue (overfull/underfull boxes, widows, alignment, fonts) for a clean PDF and log. Use this instead of running pdflatex/latexmk manually — it avoids the latexmk stale-log trap and silent grep failures on binary log output, and it reformats rather than…

Mexregkan/claude-for-researchers · 79 tokens

figure-drawing

MANDATORY skill for creating any figure, diagram, chart, table visualization, or TikZ graphic in a paper. Must be activated BEFORE writing any drawing code. Produces standalone .tex → compiled PDF/PNG → \includegraphics in paper. Never inline TikZ code directly into paper sections.

nanoAgentTeam/research-claw · 62 tokens

user-preview

Compile the current project's LaTeX files and send the generated PDF to the user for preview. Use when the user wants to check typesetting results or confirm the effect of recent edits.

nanoAgentTeam/research-claw · 42 tokens

read-paper-to-notes

Read an academic-paper PDF or supplied full text and turn it into a faithful, structured Markdown deep-reading note. Use when the user provides a research paper and asks to read, explain, summarize, take notes, extract its problem, method, equations, experiments, results, limitations, or research implications, or fill…

yujie-jason-zhang/polish_skill · 116 tokens

awesome-ieee-report

Generates IEEE-format LaTeX technical reports from project requirements and codebase evidence, using academic prose, pseudocode-only explanations, BibTeX references, and IEEEtran formatting.

EnesDemir143/awesome-ieee-report · 41 tokens