Two fixes for clean local builds: 1. journal/.latexmkrc — sets pdf_mode=1, max_repeat=5, silence_logfile_warnings=1, force_mode=1. Without this, latexmk bails on first-pass undefined-reference errors before getting to the second pass that would resolve them. Standard issue with pdfLaTeX in nonstopmode. 2. Replaced the literal U+1F98E lizard glyph in 2026-04-20-evening-mega-session.tex with a textual description. pdfLaTeX with default inputenc can't render U+1F98E; XeLaTeX or LuaLaTeX could but switching toolchains is a bigger change than the issue warrants. The lizard stays in markdown / Pluto where it works fine. Final state: 26 pages, 744 KB, no Reference/LaTeX/Unicode errors in the log. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
8 lines
285 B
Perl
8 lines
285 B
Perl
# Be tolerant of first-pass undefined refs; resolve via repeated runs.
|
|
$pdf_mode = 1;
|
|
$max_repeat = 5;
|
|
$pdflatex = 'pdflatex -interaction=nonstopmode -synctex=1 %O %S';
|
|
# Don't abort on warning-level diagnostics (cross-refs, citations).
|
|
$silence_logfile_warnings = 1;
|
|
$force_mode = 1;
|