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 latexmk
sudo tlmgr 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 commmand to find out which package includes it
tlmgr search --global --file some.sty
# and then install it
tlmgr install missingPackage
» Read full story ...