arxiv-doc-builder
Convert arXiv papers to Markdown documentation. Fetches available materials from arXiv (LaTeX source when available + PDF), converts LaTeX to Markdown via pandoc (happy path). PDF-only papers get a naive single-column fallback — use the specialized PDF scripts for better results.
What it does
arXiv Document Builder
Automatically converts arXiv papers into structured Markdown documentation for implementation reference.
Capabilities
This skill automatically:
-
Fetches paper materials from arXiv
- Attempts to download LaTeX source (preferred) and PDF (idempotent — skips if cached)
- Handles all HTTP requests, extraction, and directory setup
-
Converts LaTeX source to structured Markdown (happy path)
- LaTeX source → Markdown via pandoc (preserves all math and structure)
- Preserves mathematical formulas in MathJax/LaTeX format (
$...$,$$...$$) - Maintains section hierarchy and document structure
- Includes abstracts, figures, and references
-
PDF fallback (naive — output quality must be verified)
- When no LaTeX source is available,
convert-paperrunsconvert_pdf_simple.py(single-column pdfplumber extraction) as a best-effort fallback - This produces usable output only for simple, single-column papers
- For 2-column papers, math-heavy papers, or complex layouts, inspect the output and use the specialized PDF scripts manually (see below)
- When no LaTeX source is available,
-
Generates implementation-ready documentation
- Output saved to
{ARXIV_ID}/{ARXIV_ID}.mdunder the output directory (default: current working directory) - Easy to reference during code implementation
- Optimized for Claude to read and understand
- Output saved to
When to Use This Skill
Invoke this skill when the user requests:
- "Convert arXiv paper {ID} to markdown"
- "Fetch and process paper {ID}"
- "Create documentation for arXiv:{ID}"
- "I need to read/reference paper {ID}"
How It Works
Single Entry Point
Use the main orchestrator script or the globally installed convert-paper command:
# Using global command (recommended)
convert-paper ARXIV_ID [--output-dir DIR]
# Using script directly
uv run arxiv_doc_builder/convert_paper.py ARXIV_ID [--output-dir DIR]
--output-dir: Directory where{ARXIV_ID}/{ARXIV_ID}.mdwill be created. Default: current working directory (not apapers/subdirectory).- Use absolute paths to control output location precisely.
The orchestrator:
- Calls
fetch_paper.pyto download available materials — source if available + PDF (idempotent — cached files are reused) - Detects available format (LaTeX source or PDF)
- Calls the appropriate converter (
convert_latex.pyorconvert_pdf_simple.py) - Outputs structured Markdown to
{output-dir}/{ARXIV_ID}/{ARXIV_ID}.md
All HTTP requests (curl), file extraction (tar), and directory creation (mkdir) are handled automatically.
Source Detection
- LaTeX source available: Converts with pandoc — this is the reliable path
- PDF only: Falls back to naive single-column text extraction. Output quality varies and should be inspected. For better results, use the specialized PDF scripts below
Output Structure
Generated Markdown includes:
- Title, authors, and abstract
- Full paper content with section hierarchy
- Inline math:
$f(x) = x^2$ - Display math:
$$\int_0^\infty e^{-x} dx = 1$$ - Preserved LaTeX commands for complex formulas
- References section
Output location: {output-dir}/{ARXIV_ID}/{ARXIV_ID}.md (default output-dir is current working directory)
PDF Conversion Scripts
convert-paper only calls convert_pdf_simple.py as a naive fallback. The other scripts below are for manual or agent-driven use when the naive output is insufficient. Iterate by trying different scripts and inspecting results.
convert_pdf_simple.py
Convert all pages as single-column layout.
uv run arxiv_doc_builder/convert_pdf_simple.py paper.pdf -o output.md
convert_pdf_double_column.py
Convert all pages as double-column layout (for academic papers).
uv run arxiv_doc_builder/convert_pdf_double_column.py paper.pdf -o output.md
convert_pdf_extract.py
Extract specific pages with optional double-column processing.
# Extract specific pages
uv run arxiv_doc_builder/convert_pdf_extract.py paper.pdf --pages 1-5,10 -o output.md
# Extract with mixed column layouts
uv run arxiv_doc_builder/convert_pdf_extract.py paper.pdf --pages 1-10 --double-column-pages 3-7 -o output.md
Note: --double-column-pages must be a subset of --pages. Invalid page ranges cause immediate error.
Architecture
All three scripts share common conversion logic through pdf_converter_lib.py, ensuring consistent behavior while keeping each script focused on its specific use case.
Advanced: Vision-Based PDF Conversion
For papers with complex mathematical formulas where text extraction fails, a vision-based approach is available as a manual fallback:
# Generate high-resolution images from PDF
python arxiv_doc_builder/convert_pdf_with_vision.py paper.pdf --dpi 300 --columns 2
This creates page images (with optional column splitting) that can be read manually with Claude's vision capabilities for maximum accuracy. This is NOT part of the automatic workflow—use it only when automatic conversion produces poor results.
PDF Conversion Quality
PDF conversion is inherently lossy:
- Math formulas are not in LaTeX format
- Complex layouts (2-column with column-spanning elements) may break reading order
- Tables may need manual fixing
- References may be malformed
PDF conversion is acceptable when no LaTeX source is available and the paper is primarily text. For math-heavy papers, use the vision-based approach above or keep the PDF as the primary reference.
Fallback strategy for complex papers:
- Extract structure and text via
convert_pdf_simple.py - Keep PDF link for reference
- Use vision-based conversion for pages with dense math
- Focus on readable prose sections
Troubleshooting: Multiple \documentclass Files
Some arXiv papers (e.g., PRL with supplemental material) contain multiple .tex files, each with its own \documentclass. Automatic selection is unreliable in this case — the canonical example is 1911.04882, which ships both the main PRL paper and an independent PRL supplement, and either can convert successfully. Since pandoc succeeding is not evidence that the selected file is the correct entry point, convert-paper refuses to guess: it fails explicitly with exit code 2 and lists all candidates.
Example failure output:
Error: Found 2 files with \documentclass in /path/to/1911.04882/source:
- /path/to/1911.04882/source/main_paper.tex
- /path/to/1911.04882/source/supplemental_material.tex
Main .tex selection is ambiguous. Re-run with --tex-file pointing at the correct file, e.g.:
convert-paper <ARXIV_ID> --tex-file /path/to/1911.04882/source/main_paper.tex
If you originally passed --output-dir, include the same value in the re-run.
To resolve, re-run convert-paper with --tex-file pointing at the correct main file. The fetch step is idempotent, so the already-downloaded source is reused without touching the network:
convert-paper 1911.04882 --tex-file /path/to/1911.04882/source/main_paper.tex
If the original run used --output-dir, pass the same value again so that convert-paper reconstructs the correct paper directory.
Troubleshooting: pandoc Conversion Failures
When pandoc fails on a LaTeX source, the error may point to \end{document} with unexpected \end. This means pandoc's parser broke down due to a syntax issue elsewhere — \end{document} itself is not the cause. Do NOT attempt broad preprocessing (replacing documentclass, expanding \newcommand, removing environments, etc.) — pandoc handles revtex4/revtex4-2, custom commands, picture environments, and theorem environments correctly.
Diagnosis steps
- Binary search for the failing line. Extract the body (
\begin{document}to\end{document}), then test pandoc with increasing prefixes to find the first line that causes failure. - Check that line for brace mismatches. The most common cause is an unbalanced
{or}in the LaTeX source. LaTeX's TeX engine silently tolerates these, but pandoc's structured parser does not. - Fix only the mismatch and re-run
convert-paper. A single-character fix (e.g., removing an orphaned{) is usually sufficient. The fetch step is idempotent, so the cached source and PDF are reused without network access.
Example
The source (see, e.g., {\cite{makhlin}) has an unmatched {. LaTeX compiles fine but pandoc fails. Fix: remove the stray {.
Directory Structure
Output is created under --output-dir (default: current working directory):
{output-dir}/
└── {ARXIV_ID}/
├── source/ # LaTeX source files (if available)
├── pdf/ # PDF file
├── {ARXIV_ID}.md # Generated Markdown output
└── figures/ # Extracted figures (if any)
Capabilities
Install
Quality
deterministic score 0.46 from registry signals: · indexed on github topic:agent-skills · 15 github stars · SKILL.md body (8,814 chars)