ElCapitanでLatexToolsを使おうとしたらうまくコンパイルできなかったのでメモ。
1.Latexのアップデート
まずElCapitanでLatexがいろんな理由で使えなくなったようなのでアップデート。
手っ取り早い方法は以下。
http://abenori.blogspot.jp/2015/10/el-capitantexplatex-dvipdfmxpdflatexmac.html
2.SublimeTextの設定
texbinのpathが変わったようなのでPreference->PackageSettings->LatexTools->Settings->Userから以下のように修正。
LatexTools.sublime-settings
// ------------------------------------------------------------------
// Platform settings: adapt as needed for your machine
// ------------------------------------------------------------------
"osx": {
// Path used when invoking tex & friends; MUST include $PATH
//"texpath" : "$PATH:/usr/texbin:/usr/local/bin:/opt/local/bin"
// texpath for ElCapitan
"texpath" : "$PATH:/Library/TeX/texbin:/usr/local/bin:/opt/local/bin"
// Path to PDF viewer, if needed
// TODO think about it. Also, maybe configure it here!
},