Jupyterからpdfに変換するためにかなり引っかかったのでメモ
画像付きで文書は英語のみのファイルを変換しようとしました
環境
- macOS High Sierra
- ver. 10.13.4
- 環境管理は
pyenv-virtualenv
やったこと
$ pip install notebook --upgrade
$ brew install pandoc
$ brew cask install basictex
$ echo "export PATH=/Library/TeX/texbin:$PATH" >> ~/.zshrc
$ source ~/.zshrc # ここと一つ上はbashの方は.bash_profileやらに変更
$ sudo tlmgr update --self --all
$ sudo tlmgr install adjustbox
$ sudo tlmgr install collectbox
$ sudo tlmgr install ucs
$ sudo tlmgr install collection-langjapanese collection-luatex collection-latexextra # 日本語のファイルを変換する場合に必要らしい
$ sudo tlmgr install collection-fontsrecommended
$ jupyter nbconvert your_filename.ipynb --to pdf # pdfに変換する