latex-setup
Original:🇺🇸 English
Translated
LaTeX environment setup on macOS. TRIGGERS - install LaTeX, MacTeX, Skim viewer, SyncTeX setup.
12installs
Sourceterrylica/cc-skills
Added on
NPX Install
npx skill4agent add terrylica/cc-skills latex-setupTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →LaTeX Environment Setup
When to Use This Skill
Use this skill when:
- Installing LaTeX on a new machine
- Setting up MacTeX distribution
- Configuring Skim PDF viewer with SyncTeX
- Verifying LaTeX installation
- Troubleshooting missing packages
Quick Reference
Recommended Stack
| 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 |
Quick Start
Install MacTeX
bash
brew install --cask mactex
# Size: ~4.5 GB (includes everything)Verify Installation
bash
tex --version
# Expected: TeX 3.141592653 (TeX Live 2025)
pdflatex --version
latexmk --versionTest Compilation
bash
echo '\documentclass{article}\begin{document}Hello World!\end{document}' > test.tex
pdflatex test.tex
ls test.pdf # Verify PDF createdPost-Installation Checklist
- Verify shows TeX Live 2025
tex --version - Verify shows 4.86a+
latexmk --version - Verify creates PDF
pdflatex test.tex - Install Skim if using mactex-no-gui
- Test SyncTeX: compile with flag
-synctex=1 - Configure Skim preferences for editor integration
- Add to PATH if needed
/Library/TeX/texbin - Test package installation:
sudo tlmgr install <package>
Reference Documentation
For detailed information, see:
- Installation - Full MacTeX vs lightweight options, Skim installation
- Verification - Check installation, verify PATH, test compilation
- Package Management - Check, install, search for packages with tlmgr
- Skim Configuration - Enable SyncTeX, configure preferences for editor integration
- Troubleshooting - PATH issues, tlmgr problems, permissions
See Also:
- Build Workflows: Use skill for latexmk automation
latex/build - Table Creation: Use skill for tabularray usage
latex/tables
Troubleshooting
| 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 |