compile-paper

Compile LaTeX manuscripts with latexmk and report errors and warnings.

Updated Feb 21, 2026
One-click install
npx skills add https://github.com/choi-jaehyun/jaehyun-claude-workflow --skill compile-paper
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: compile-paper
Source: https://github.com/choi-jaehyun/jaehyun-claude-workflow/tree/main/.agents/skills/compile-paper
Command: npx skills add https://github.com/choi-jaehyun/jaehyun-claude-workflow --skill compile-paper

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Compile LaTeX manuscripts from the project root by running latexmk (or a multi-pass pdflatex + biber fallback), and report errors, warnings, and undefined references to ensure a clean build.

Core Features & Use Cases

  • End-to-end LaTeX compilation from the project root, surfacing compilation errors and overfull boxes.
  • Fallback support with multi-pass pdflatex and biber when latexmk is unavailable, increasing robustness.
  • Verification of output artifacts and quick PASS/FAIL reporting for manuscript builds, slides, or reports.

Quick Start

Run latexmk from the project root to build manuscript/main.tex and verify that manuscript/main.pdf is generated.

Frequently Asked Questions about compile-paper

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I compile LaTeX manuscripts and verify the output PDF from the project root?

When latexmk is unavailable, compile LaTeX manuscripts using a multi-pass pdflatex and biber fallback pipeline. This robust approach ensures bibliography resolution and proper cross-referencing during the manuscript build process.

Why does my LaTeX compilation report undefined references and overfull hboxes?

LaTeX compilation reports undefined references and overfull hboxes to surface formatting and citation issues that need fixing. It ensures a clean build by verifying output artifacts and providing quick PASS or FAIL reporting for your manuscript.

Can I use a multi-pass pdflatex and biber pipeline for local research workflows?

Yes, you can use a multi-pass pdflatex and biber pipeline for local research workflows where latexmk is not installed. This automates bibliography resolution and document compilation directly from your project root directory.

What is the best way to automate LaTeX compilation and check for errors?

The best way to automate LaTeX compilation is running latexmk from the project root, which manages multi-pass builds automatically. It ensures comprehensive reporting of compilation errors, warnings, and verifies that the output PDF is generated.