docs(setup): fix stale pdflatex references to lualatex

Two stragglers in SETUP.md still recommended pdflatex even though the
README, CLAUDE.md, and 05-cv-templates.md all correctly say lualatex.
The compile snippet in section 7 used pdflatex, and the troubleshooting
section described the CV compile as "standard LaTeX." Both updated to
match the rest of the documentation.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
Mads Lorentzen
2026-04-28 21:03:20 +02:00
co-authored by Claude Opus 4.7
parent 465c429f94
commit 83ca0a8557
+2 -2
View File
@@ -143,7 +143,7 @@ After `/apply` creates the LaTeX files:
```bash ```bash
# Compile CV # Compile CV
cd cv && pdflatex main_<company>.tex && cd .. cd cv && lualatex main_<company>.tex && cd ..
# Compile cover letter # Compile cover letter
cd cover_letters && xelatex cover_<company>_<role>.tex && cd .. cd cover_letters && xelatex cover_<company>_<role>.tex && cd ..
@@ -158,7 +158,7 @@ This is expected if you haven't set up salary benchmarking. The `/apply` workflo
Make sure Bun is installed and you ran `bun install` in each CLI directory. The tools require network access to fetch job listings. Make sure Bun is installed and you ran `bun install` in each CLI directory. The tools require network access to fetch job listings.
### LaTeX compilation errors ### LaTeX compilation errors
- CV: uses `pdflatex` (standard LaTeX) - CV: uses `lualatex` (pdflatex often fails on modern MiKTeX with `fontawesome5` font-expansion errors; lualatex handles the same sources cleanly)
- Cover letter: uses `xelatex` (for custom fonts in `OpenFonts/fonts/`) - Cover letter: uses `xelatex` (for custom fonts in `OpenFonts/fonts/`)
- Make sure your LaTeX distribution includes the `moderncv` package - Make sure your LaTeX distribution includes the `moderncv` package