如何配置SublimeText的LaTeXTools(SublimeText+MikTex。。。⼀、准备⼯作
MikTex(或者TeXLive)
Sublime Text
LaTeXTools
Sumatra PDF (⽤它来预览⽣成的pdf)
⼆、安装
安装MikTex和Sumatra PDF
安装LaTeXTools:
在sublime(安装好package control,参考⽹上教程)按下快捷键ctrl + shift + p.
选择package control: install package;
搜索LaTeXTools,下载安装;
配置LaTeXTools:
在preferences/browse packages 的LaTeXTools⽬录下到LaTeXTools.sublime-settings。
打开⽂件,修改成如下:sumatra那栏可以不填
配置sumtrama:
将 SumatraPDF 的主程序⽬录添加到环境变量PATH;
打开命令提⽰符,执⾏以下命令:(将其中的安装路径替换成你实际的安装路径)
< -inverse-search "\"C:\Program Files\Sublime Text 3\\" \"%f:%l\""
三、编译
按下ctrl+b,⾃动编译。
如果编译出现如下问题:
Sublime latex could not complie
sublime text3安装教程解决:看log⽂件
program: one of pdflatex (the default), xelatex or lualatex. This selects the TeX engine.
解决:在builder_settings⾥⾯加⼊“program:”“xelatex”
“builder_settings” : {
// General settings:
// See README or third-party documentation
"program": "xelatex",
// or "command": ["texify", "-b", "-p", "--tex-option=\"--synctex=1\""],
// (built-ins): true shows the log of each command in the output panel
"display_log" : false,
// Platform-specific settings:
"osx" : {
// See README or third-party documentation
},
"windows" : {
// See README or third-party documentation
},
"linux" : {
// See README or third-party documentation
}

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。