compile-latex

Compile Beamer LaTeX Slides

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "compile-latex" with this command: npx skills add pedrohcgs/claude-code-my-workflow/pedrohcgs-claude-code-my-workflow-compile-latex

Compile Beamer LaTeX Slides

Compile a Beamer slide deck using XeLaTeX with full citation resolution.

Steps

  • Navigate to Slides/ directory and compile with 3-pass sequence:

cd Slides TEXINPUTS=../Preambles:$TEXINPUTS xelatex -interaction=nonstopmode $ARGUMENTS.tex BIBINPUTS=..:$BIBINPUTS bibtex $ARGUMENTS TEXINPUTS=../Preambles:$TEXINPUTS xelatex -interaction=nonstopmode $ARGUMENTS.tex TEXINPUTS=../Preambles:$TEXINPUTS xelatex -interaction=nonstopmode $ARGUMENTS.tex

Alternative (latexmk):

cd Slides TEXINPUTS=../Preambles:$TEXINPUTS BIBINPUTS=..:$BIBINPUTS latexmk -xelatex -interaction=nonstopmode $ARGUMENTS.tex

Check for warnings:

  • Grep output for Overfull \hbox warnings

  • Grep for undefined citations or Label(s) may have changed

  • Report any issues found

Open the PDF for visual verification:

open Slides/$ARGUMENTS.pdf # macOS

xdg-open Slides/$ARGUMENTS.pdf # Linux

Report results:

  • Compilation success/failure

  • Number of overfull hbox warnings

  • Any undefined citations

  • PDF page count

Why 3 passes?

  • First xelatex: Creates .aux file with citation keys

  • bibtex: Reads .aux , generates .bbl with formatted references

  • Second xelatex: Incorporates bibliography

  • Third xelatex: Resolves all cross-references with final page numbers

Important

  • Always use XeLaTeX, never pdflatex

  • TEXINPUTS is required: your Beamer theme lives in Preambles/

  • BIBINPUTS is required: your .bib file lives in the repo root

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Coding

review-paper

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

create-lecture

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

context-status

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

interview-me

No summary provided by upstream source.

Repository SourceNeeds Review