ワンクリックで
latex
Use when you need to compile a LaTeX document — includes autonomous error resolution, citation audit, and quality scoring.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Use when you need to compile a LaTeX document — includes autonomous error resolution, citation audit, and quality scoring.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Use when you need to compare a project .bib against a Paperpile project/topic folder to find uncited papers or unfiled entries.
Use when you need to extract citations from a PDF and generate a validated .bib file. Reads the PDF, identifies all referenced works, constructs BibTeX entries with metadata verification, then runs bib-validate.
Use when you need to check a LaTeX submission against a PDF assessment brief.
Use when you need to replicate a quantitative analysis in a second language (R↔Python↔Stata↔Julia) to verify correctness. Level 1 of the verification hierarchy.
Use when you need to challenge research assumptions or stress-test arguments.
Review user-facing documentation for accuracy, consistency, and completeness across private, public, nested repos, and the user manual. Use when docs feel stale, after major changes, or before sharing. (Replaces `repo-doc-audit`)
| name | latex |
| description | Use when you need to compile a LaTeX document — includes autonomous error resolution, citation audit, and quality scoring. |
| allowed-tools | Bash(latexmk*), Bash(xelatex*), Bash(pdflatex*), Bash(biber*), Bash(bibtex*), Bash(mkdir*), Bash(ls*), Bash(wc*), Bash(cp*), Read, Write, Edit, Grep, Glob |
| argument-hint | ["tex-file-path"] |
| skill-dependencies | ["bib-validate"] |
Default compilation skill for all LaTeX documents. Compiles with autonomous error detection and resolution (up to 5 iterations), runs a citation audit on clean builds, and produces a quality score.
.tex file that should compile to PDFApply numeric quality scoring using the shared framework and skill-specific rubric:
../shared/quality-scoring.md — severity tiers, thresholds, verdict rulesreferences/quality-rubric.md — issue-to-deduction mappings for this skillStart at 100, deduct per issue found, apply verdict. Include the Score Block in the final report.
out/, PDF stays in the source directory. Ensure .latexmkrc exists with $out_dir = 'out' and an END {} block to copy the PDF back (see pre-flight below). For VS Code builds, .latexmkrc in subdirectories is not picked up — see "VS Code Integration" section for the required .vscode/settings.json config.literature skill.elsarticle loads natbib — adding \usepackage{natbib} causes errors).\cite{} vs .bib cross-check after zero errors.bib-validate when new citations were added. The citation audit only checks key cross-references. When .bib entries were added or modified since the last validation, also run bib-validate for full metadata quality checks (preprint staleness, DOI presence, required fields, author formatting). This is mandatory..tex file. Resolve the path (absolute or relative to CWD)..tex file..latexmkrc exists in the project directory with at minimum:
$out_dir = 'out';
# Copy PDF back to source directory after build
END { system("cp $out_dir/*.pdf . 2>/dev/null") if defined $out_dir; }
If a .latexmkrc already exists, verify it sets $out_dir = 'out' and has the END {} block. If either is missing, add it. Do not overwrite other settings.out/ directory if it doesn't exist: mkdir -p <project-dir>/out..bib file(s) referenced in the document (scan for \bibliography{}, \addbibresource{}, or \bibinput{}). Note their paths for Phase 5.Run up to 5 iterations. Each iteration:
cd <project-dir> && latexmk -interaction=nonstopmode <filename>.tex 2>&1
Capture the full output. The log file will be at out/<filename>.log.
Read out/<filename>.log in full. Parse for errors and warnings.
Check the log against the known error patterns below. If an error matches, apply the fix and go to Step 2a. If no known pattern matches, record the error as unresolved and stop the loop.
Same-error circuit breaker. Independent of the 5-iteration cap: if the same error (same line family, same pattern signature) survives 3 consecutive fix attempts, stop the loop early. Continued attempts on a stuck error compound damage rather than resolve it. Report what was tried, quote the log line, and ask the user how to proceed. A common signature: Illegal parameter number jumping between line numbers as you edit — that is the diagnostic for a parameterized TikZ style defined inside a Beamer frame; see skills/shared/tikz-rules.md Rule 11.
Check the log against these patterns. Full fix instructions: references/known-errors.md
| # | Pattern | Key log signature |
|---|---|---|
| 1 | Missing package | File '<pkg>.sty' not found or undefined command from known package |
| 2 | Font/symbol conflicts | Command \<name> already defined |
| 3 | Undefined citation | Citation '<key>' ... undefined or biblatex entry not found |
| 4 | Missing image/file | File '<path>' not found (pdftex.def or LaTeX) |
| 5 | Stale auxiliary files | Corrupted .aux/.bbl/.bcf, or no \bibstyle command |
| 6 | Beamer/enumitem clash | Option clash for package enumitem or \item already defined |
| 7 | xcolor option conflicts | Option clash for package xcolor or undefined \rowcolor |
| 8 | TikZ reserved keys | I do not know the key '/tikz/<name>' or pgfkeys error |
If an error matches, read the full fix from the reference and apply it. If no pattern matches, record as unresolved and stop the loop.
Only run if the compile-fix loop above ended with a successful compilation (PDF exists).
If the .tex file is inside a paper-{venue}/paper/ structure (where paper/ is a symlink to Overleaf):
paper/ symlink (e.g., paper-jbdm/).mkdir -p <paper-wrapper>/backupcp <paper-wrapper>/paper/<filename>.pdf <paper-wrapper>/backup/<wrapper-name>_vcurrent.pdf
Detection logic:
.tex file is a symlink named paper.paper-.After the loop ends (either clean compilation or max iterations reached), report:
| Field | Value |
|---|---|
| Status | Clean / Errors remaining |
| Iterations | N of 5 |
| Pages | (from log: Output written on ... (N pages)) |
| LaTeX/package warnings | Count of Warning-tagged log lines (undefined refs, font subs, package warnings) |
| Typographic boxes | Overfull/underfull h/vboxes by severity — see box report below (NOT counted by a Warning grep) |
| Fixes applied | List each fix: what error, what was changed, which file |
| Unresolved errors | List any errors that couldn't be auto-fixed |
grep -o "Output written on .* ([0-9]* page" out/<filename>.log | grep -o "[0-9]* page"
Warnings and typographic boxes are separate — box messages are not
Warning-tagged, so a single Warning grep misses every overfull/underfull box.
Report both, using the recipes in ../shared/overfull-boxes.md:
# LaTeX/package warnings (refs, fonts, packages)
grep -c "Warning" out/<filename>.log
# Overfull/underfull boxes (the thing the Warning grep cannot see)
grep -cE 'Overfull \\[hv]box \([0-9.]+pt too (wide|high)\)' out/<filename>.log
grep -cE 'Underfull \\[hv]box \(badness [0-9]+\)' out/<filename>.log
Extract the top offenders by overflow magnitude and report each box ≥ 1 pt with
its location, width, and a remediation tier per the severity gradient + ladder in
../shared/overfull-boxes.md:
awk -F'[()]' '/Overfull \\[hv]box/ {
split($2, a, "pt"); w = a[1] + 0;
loc = $0; sub(/.*too (wide|high)\) */, "", loc);
printf "%7.1f pt %s\n", w, loc
}' out/<filename>.log | sort -rn | head -20
Report only — do not silently reword prose to close a box (rules/manuscript-edit-budget.md).
The only safe auto-fix is inserting \usepackage{microtype} when genuinely absent.
Breadcrumb: Append to .planning/state.md (if exists) or .context/current-focus.md:
### [latex] Compilation complete [YYYY-MM-DD HH:MM]
- **Done:** [Clean/Errors remaining, N iterations, N pages, N fixes applied]
- **Outputs:** [PDF at <path>]
- **Next:** [Citation audit (if clean) or manual error resolution]
Only run if Phase 2 ended with zero errors. Sits between the final report (Phase 3) and the citation audit (Phase 5). Catches LaTeX source patterns that compile clean but produce visually fragile output — the failure class the title-page incident (2026-06-19) exposed.
Full detector catalogue with regex signatures, severity tiers, remediation, and false-positive caveats: references/source-pathologies.md.
Nine grep-based source-pathology detectors against main.tex plus any \input/\include'd files:
| # | Pattern | Tier |
|---|---|---|
| 1 | Spacing hacks fighting global spacing (\onehalfspacing + local \\[-Xcm] / \vspace{-…}) | Major |
| 2 | Manual vertical-rhythm surgery (repeated \vspace/\vskip/\pagebreak in body) | Moderate–Major |
| 3 | Line breaks as layout engine (\\ / \newline / \linebreak inside \section/\caption) | Moderate–Major |
| 4 | Forced-float carpet bombing ([H]/[!h] pinning, \FloatBarrier overuse) | Moderate |
| 5 | Shrink-to-fit tables/figures (\resizebox{\textwidth}{!}{…}, \adjustbox{width=\textwidth}) | Major |
| 6 | Tiny-table typography hacks (\scriptsize/\tiny in tables; negative \tabcolsep; \arraystretch<0.9) | Moderate–Major |
| 7 | Absolute / overlap positioning (\raisebox, \makebox[0pt], \llap, \rlap, \smash, \hspace*) outside math | Major |
| 8 | Fixed-width layout assumptions (p{Xcm}, \begin{minipage}{Xcm}, \parbox{Xcm}) | Moderate |
| 9 | Label-before-caption inside floats (\label{…} precedes \caption{…} in a figure/table block) | Major |
chktex if installed: chktex -q -n8 -n44 main.tex 2>&1 | grep -v "^$". Advisory only — collect warnings; deduct -1 each, capped at -10. Skip if chktex not on PATH.
latexindent -k if installed: latexindent -k main.tex 2>&1; echo "Exit: $?". Source-cleanliness smoke test. Non-zero exit → -3 once. Skip if latexindent not on PATH.
Append a Source pathologies subsection to the Phase 3 report:
### Source pathologies
| Pattern | Location | Detail | Tier |
|---------|----------|--------|------|
| 1 Spacing-hacks | titlepage, line 56 | `\\[-0.3cm]` under global `\onehalfspacing` (line 43) | Major |
| 9 Label-before-caption | tab:results, line 412 | `\label` at L410 precedes `\caption` at L413 | Major |
If no findings: "No source pathologies detected." If chktex or latexindent ran, note their PASS/N-warnings status.
Phase 4 is report-only, with one exception: Pattern 1 ("Spacing hacks fighting global spacing") has a deterministic remediation (wrap the affected block in \begin{singlespace}…\end{singlespace}, delete the negative kerns). The skill offers this as an opt-in fix in the final report; the user accepts or declines per case. Do not auto-apply.
For Patterns 2–9 and tool findings: report only.
latex --no-lint.Only run this phase if Phase 2 ended with zero errors.
\cite keys from the .tex file (and any \input/\include files):
\cite{...}, \citep{...}, \citet{...}, \textcite{...}, \parencite{...}, \autocite{...}, and multi-key variants like \cite{key1,key2}..bib file(s): match @<type>{<key>,.| Check | What it finds |
|---|---|
| Missing in .bib | Keys cited in .tex but absent from .bib |
| Unused in .tex | Keys defined in .bib but never cited |
| Possible typos | Near-matches between missing cite keys and existing bib keys |
After all phases complete, compute the quality score:
references/quality-rubric.md for deduction mappings.>10pt: -5, 1-10pt: -2, underfull: -1) — feed it the box report, not a Warning count.../shared/quality-scoring.md.## Quality Score
| Metric | Value |
|--------|-------|
| **Score** | XX / 100 |
| **Verdict** | Ship / Ship with notes / Revise / Revise (major) / Blocked |
### Deductions
| # | Issue | Tier | Deduction | Category |
|---|-------|------|-----------|----------|
| 1 | [description] | [tier] | -X | [category] |
| | **Total deductions** | | **-XX** | |
When the compile produced a PDF (and any backup copy), emit an outputs manifest and run the shared verifier per _shared/verify-outputs.md:
Write manifest to <project>/.claude/state/outputs-manifest-<UTC-timestamp>.json listing every file written this invocation (PDF, backup PDF if 2.4 ran, log files).
Run:
uv run python "<skills-root>/_shared/verify_outputs.py" \
--manifest "$MANIFEST" \
--project-root "$PROJECT_ROOT"
If the verifier exits non-zero, do not commit. Surface the missing-files list and stop.
Closes the "hallucinated outputs" failure class (commit b2cff75, 2026-04-18).
All LaTeX build artifacts (.aux, .log, .bbl, .fls, etc.) go to an out/ subfolder relative to the source file. The PDF is copied back to the source directory after each successful build, so it lives alongside the .tex file for easy access.
The PDF-copy convention is enforced in two places — keep them in sync when making changes:
.latexmkrc (per-project) — Perl END {} block copies PDF after terminal/Claude Code builds.vscode/settings.json (per-workspace) — explicit latexmk args in LaTeX Workshop tool definitionVS Code integration, engine auto-detection (pdfLaTeX/XeLaTeX/LuaLaTeX), manual override configs, reference checking scripts, and manual compilation commands:
When a project is synced to Overleaf (via Dropbox or Git):
out/ directory will sync to Overleaf but Overleaf ignores it — this is fine.latexmkrc to enforce out/ — Overleaf ignores this file too.bst file (e.g., elsarticle-harv.bst) lives in the source directory, not out/Not all projects sync to Overleaf. For local-only projects:
out/ and .latexmkrc conventions apply — this keeps the working directory clean regardless of sync methodpaper/ symlink — .tex files live directly in the project root or a subdirectorySee references/templates.md for working paper template location, files, citation style toggle, bibliography file naming conventions, and bibliography command reference.
| Situation | Delegate to |
|---|---|
| Need to find or verify a bibliography entry | literature |
| Full academic proofreading after clean compilation | proofread |
Detailed .bib validation beyond cite-key matching | bib-validate |
| Beamer presentations specifically | beamer-deck (which uses this skill internally for compilation) |
| Fleet-wide compilation health check | latex-health-check (project discovery, 3 iterations per project, cross-project checks) |
"Compile my paper at
~/papers/mcdm-survey/main.tex"
Runs the full protocol: pre-flight → compile-fix loop → report → citation audit → quality score.
"Recompile — I added the missing package manually"
Runs from Phase 2 directly (pre-flight can be skipped if .latexmkrc and out/ already exist).
"My paper won't compile — something about Bbbk"
Identifies as Pattern 2 (font conflict), applies the \let\Bbbk\relax fix, recompiles.