Learn from a particle physicist

GeFiCa GEARS Tools

FASTEST WAY TO INSTALL LATEX IN A MAC

Sep 23, 2022 learning LaTeX Mac

# most of the time, these are all you need:
brew install basictex
sudo tlmgr install latexmk
tlmgr init-usertree
tlmgr --usermode install collection-fontsrecommended
# now try to compile your project using latexmk:
cd /path/to/your/LaTeX/project
latexmk
# if some.sty is missing,
# use the following command to find out which package includes it
tlmgr search --global --file some.sty
# and then install it
tlmgr --usermode install missingPackage
» Read full story ...