Skip to content

Instantly share code, notes, and snippets.

@peterhurford
Last active November 18, 2023 21:29
  • Star 86 You must be signed in to star a gist
  • Fork 17 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
How to install latex and xelatex on Mac so that Jupyter "Download as PDF" will work
brew install pandoc
brew tap homebrew/cask
brew install --cask basictex
eval "$(/usr/libexec/path_helper)"
# Update $PATH to include `/usr/local/texlive/2022basic/bin/universal-darwin`
sudo tlmgr update --self
sudo tlmgr install texliveonfly
sudo tlmgr install xelatex
sudo tlmgr install adjustbox
sudo tlmgr install tcolorbox
sudo tlmgr install collectbox
sudo tlmgr install ucs
sudo tlmgr install environ
sudo tlmgr install trimspaces
sudo tlmgr install titling
sudo tlmgr install enumitem
sudo tlmgr install rsfs
@claczny
Copy link

claczny commented Sep 19, 2023

Worked nicely to have dependencies of Rmarkdown in combination with the vitae package to create a CV. Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment