agentsclimarketplace

Compile latex

Skill brycewang-stanford/Auto-Empirical-Research-Skills/skills/14-luischanci-claude-code-research-starter/dot-claude/skills/compile-latex

Compile a LaTeX manuscript with pdflatex (3 passes + bibtex). Use when compiling the research paper.From its SKILL.md

Install
npx -y skills add brycewang-stanford/Auto-Empirical-Research-Skills --skill compile-latex

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.

SKILL.md

1.4 KB, 322 tokens by cl100k_base, as published. Nobody here has run it

Compile LaTeX Manuscript

Compile a LaTeX manuscript using the standard 3-pass sequence for full citation resolution.

Steps

  1. Identify the file: Use $ARGUMENTS as the base name (without .tex). If no argument, look for the main .tex file in the paper folder.

  2. Compile (from the paper folder):

    pdflatex -interaction=nonstopmode $ARGUMENTS.tex
    bibtex $ARGUMENTS
    pdflatex -interaction=nonstopmode $ARGUMENTS.tex
    pdflatex -interaction=nonstopmode $ARGUMENTS.tex
    
  3. Check results:

    • Grep for Overfull \\hbox warnings -- count them
    • Grep for undefined citations or missing references
    • Verify PDF was generated with non-zero size: ls -la $ARGUMENTS.pdf
    • Report page count if pdfinfo is available
  4. Report:

    • Compilation: PASS / FAIL
    • Warnings: N overfull hbox, N undefined citations
    • PDF: exists, N pages, X KB

Notes

  • Uses pdflatex by default. Change to xelatex or lualatex if your project requires it.
  • The .bib file should be in the same directory or referenced with a relative path.
  • Parameter estimates loaded via \input{} must exist at their referenced paths.

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 326,144. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.