Loading...
Loading...
LaTeX environment setup on macOS. TRIGGERS - install LaTeX, MacTeX, Skim viewer, SyncTeX setup.
npx skill4agent add terrylica/cc-skills latex-setup| Component | Purpose | Status |
|---|---|---|
| MacTeX 2025 | Full LaTeX distribution (TeX Live 2025) | ✅ Recommended |
| Skim 1.7.11 | PDF viewer with SyncTeX support | ✅ macOS only |
| TeXShop 5.57 | Integrated LaTeX IDE (optional) | ✅ Native macOS |
brew install --cask mactex
# Size: ~4.5 GB (includes everything)tex --version
# Expected: TeX 3.141592653 (TeX Live 2025)
pdflatex --version
latexmk --versionecho '\documentclass{article}\begin{document}Hello World!\end{document}' > test.tex
pdflatex test.tex
ls test.pdf # Verify PDF createdtex --versionlatexmk --versionpdflatex test.tex-synctex=1/Library/TeX/texbinsudo tlmgr install <package>latex/buildlatex/tables| Issue | Cause | Solution |
|---|---|---|
| tex command not found | PATH not configured | Add |
| Permission denied (tlmgr) | Need sudo for system packages | Use |
| Package not found | Missing from TeX Live | Run |
| Skim not showing PDF | SyncTeX not enabled | Compile with |
| Outdated TeX Live | Old MacTeX version | Run |
| Compilation hangs | Infinite loop in document | Check for circular includes or missing \end{} |
| Missing font error | Font not in TeX distribution | Install with |
| Disk space error | Full TeX Live too large | Consider BasicTeX (smaller) if space limited |