LoginSignup
4
4

More than 5 years have passed since last update.

ElCapitanでLatexToolsを使う

Posted at

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!
    },

参考:https://github.com/SublimeText/LaTeXTools/issues/531

4
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
4