Generate publication-quality PDF/PPTX reports from D2NN experiment results. Includes figure verification, LaTeX QA, and optional Korean translation.
Generate comprehensive technical reports from experiment results.
results.json, test_metrics.json, history.json, config.yaml.png / .pdf figure files□ All figure references have matching files that exist on disk
□ LaTeX compiles without errors
□ xcolor package loaded before definecolor calls
□ No missing figure warnings in compilation log
□ Page count matches expectations
□ All tables have data (no empty cells)
□ Korean fonts available if KO version requested (Noto CJK fallback)
□ PPTX images not stretched (aspect ratio preserved)
# Compile
xelatex -interaction=nonstopmode report.tex
# Verify figures
grep -o 'includegraphics.*{[^}]*}' report.tex | while read line; do
fig=$(echo "$line" | grep -o '{[^}]*}' | tr -d '{}')
[ -f "$fig" ] && echo "✅ $fig" || echo "❌ MISSING: $fig"
done
# Check for errors
grep -c "Error\|Warning.*undefined" report.log