Compile tex
Compile a LaTeX (.tex) project to PDF, building in an isolated temp directory so no build artifacts land in the project directory. Uses a local latexmk install if present, otherwise falls back to a Docker TeX Live image. Use when asked to compile, build, or typeset a LaTeX paper.From its SKILL.md
npx -y skills add hmasum52/skills --skill compile-texAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
0.9 KB, 147 tokens by cl100k_base, as published. Nobody here has run it
Compiles a .tex file to PDF, isolating the build in a temp directory so the project directory stays free of .aux/.log/etc. artifacts -- only the finished PDF is copied back.
Uses latexmk directly if it's already on PATH. Otherwise falls back to the ghcr.io/xu-cheng/texlive-full Docker image (requires Docker running) -- override with the LATEX_DOCKER_IMAGE env var.
bash .claude/skills/compile-tex/scripts/compile.sh [file.tex]
If no filename is given and exactly one .tex file exists in the project root, it's used automatically.
What ships with it: 3 files
3.7 KB alongside SKILL.md, 1 of them executable
scripts/
- compile.shruns2.5 KB
- example.tex118 B
- README.md1.1 KB