win10 中使用vs code 编译 latex,win10latex
分享于 点击 45598 次 点评:188
win10 中使用vs code 编译 latex,win10latex
1、安装vs code和texlive
2、在vs code中安装latex workshop
3、在vs code左下角点齿轮->设置
右边输入
{ "latex-workshop.latex.autoBuild.onTexChange.enabled": true,
"latex-workshop.view.pdf.viewer": "tab",
"latex-workshop.latex.toolchain": [
{
"command": "xelatex",
"args": [
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"-pdf",
"%DOC%"
]
}
],
"latex-workshop.latex.clean.enabled": true,
}
4、每次保存内容时,vs code 会对其自动进行编译,或者按Ctrl+Alt+B进行编译
相关文章
- 暂无相关文章
用户点评