Skip to content

Instantly share code, notes, and snippets.

@ckunte
Created August 12, 2012 07:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ckunte/3330330 to your computer and use it in GitHub Desktop.
Save ckunte/3330330 to your computer and use it in GitHub Desktop.
Automating installation of special packages I use together with xelatex (works with MacTex Basic 2012).
#!/usr/bin/env sh
echo "Updating self, then all.."
sudo /usr/texbin/tlmgr update --self
sudo /usr/texbin/tlmgr update --all
echo "Installing fontspec marginnote realscripts sectsty xltxtra ulem .."
sudo /usr/texbin/tlmgr install fontspec marginnote realscripts sectsty xltxtra ulem
echo "All done."
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment