build-paper

Compile LaTeX documents into PDFs using pdflatex and bibtex.

58|10|Updated Apr 2, 2026
One-click install
npx skills add https://github.com/Alexander-M-Dickerson/ai-asset-pricing --skill build-paper
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: build-paper
Source: https://github.com/Alexander-M-Dickerson/ai-asset-pricing/tree/main/.claude/skills/build-paper
Command: npx skills add https://github.com/Alexander-M-Dickerson/ai-asset-pricing --skill build-paper

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Compile LaTeX documents into a PDF by running the canonical BibTeX cycle, reducing manual re-compile effort and ensuring references are properly resolved.

Core Features & Use Cases

  • Full build cycle: pdflatex → bibtex → pdflatex → pdflatex to resolve references
  • Quick build: single pdflatex pass for faster iteration
  • Works for standard LaTeX projects with a main.tex and bibliography file, suitable for academic papers and reports

Quick Start

Run the full build to generate the final PDF from the LaTeX sources.

Frequently Asked Questions about build-paper

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

FAQPage Schema
How do I automate compiling a LaTeX document into a PDF with BibTeX?

Automate LaTeX to PDF compilation by running the canonical BibTeX cycle (pdflatex, bibtex, pdflatex, pdflatex) to resolve references and generate the final document without manual re-compilation.

Why does my LaTeX bibliography need multiple compilation passes to show up correctly?

A LaTeX bibliography requires multiple passes because bibtex generates reference files that subsequent pdflatex runs must parse to resolve citations. The full build cycle ensures all references are properly linked.

Do I need local pdflatex and bibtex tooling installed to compile my document?

Yes, you need local pdflatex and bibtex tooling available via the bootstrap flow. The automation executes these commands in a deterministic sequence within the specified LaTeX project directory.

Can I do a quick single-pass LaTeX build for faster iteration during editing?

Yes, a quick build mode runs a single pdflatex pass for faster iteration. This skips the bibtex cycle and subsequent passes, making it suitable for checking text changes when references are already resolved.

What is the best way to resolve unresolved references in an academic paper PDF?

The best way to resolve references is executing a full build cycle. Running pdflatex followed by bibtex and two additional pdflatex passes ensures all citations and bibliography entries are correctly resolved.

Does this LaTeX to PDF automation work with standard academic research projects?

Yes, it works with standard LaTeX projects containing a main.tex file and bibliography. It is designed for typical academic papers and reports, handling multiple compilation passes deterministically.