LaTeX is distributed on Mac OS X via MacTex. As of this wriiting the installer is 2.3 GB. It's pretty large so it'll take some time to download.
You can find the latest version on their website.
You can skip this section if you don't use a different system shell (i.e. you use bash).
If you're using a shell other than bash, you'll want to add /usr/texbin to your PATH.
Open ~/.zshrc
in your favorite editor and find a line similiar to:
export PATH="$HOME/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
You'll want to add /usr/texbin
to the path like so (it's at the end):
export PATH="$HOME/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/texbin"
- In Terminal.app,
cd
into your work report directory - Run
make
. You'll see a bunch of messages scroll across your terminal. - Run
open Default_Report.pdf
to open the generated PDF.
Every time you make a change to the LaTeX, you'll want to run make
again to see your changes. Steps 2 and 3 can be combined into one command such as make && open Default_Report.pdf