Visual Studio Code (以下简称 VS Code)是微软推出的一款编辑器,在尝试为用他配置 Python 开发环境之后,我深深的被 VS Code的代码高亮和中文显示吸引了,以至于用了这么多年的 Sublime Text 都想迁移到 VS Code,搭建好 LaTeX 环境之后,我对比了下 Sublime Text 和 VS Code,感觉 Sublime Text 这块更成熟(特指 LaTeX),VS Code 属于追赶者
LATEX 是基于 Tex 的排版系统,多用于排版高质量的科技类和数学类文档。
Tex Live
TexLive是tex的集合环境,包含了pdfletex,xeletex等编译器。
下载地址:http://mirrors.ctan.org/systems/texlive/Images/texlive.iso
安装过程:https://zhuanlan.zhihu.com/p/19779481?columnSlug=LaTeX
Visual Studio Code
Visual Studio Code,一款强大的跨平台编辑器。
Latex Workshop
Latex Wordshop 是 Visual Studio Code 下的一个扩展,可编译、反定向、有代码提示。
环境配置
安装好Tex Live 和 vscode 之后,直接在扩展里面搜索Latex Workshop并安装。
Latex Workshop默认是用pdflatex编译的,我们将他改成Xelatex后即可完美支持中文。
修改方法如下:
ctrl+,搜索latex-workshop.latex.toolchain->右键 Replace in Setting->修改为如下代码
"latex-workshop.latex.toolchain": [
{
"command": "xelatex",
"args": [
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"%DOC%"
]
}, {
"command": "bibtex",
"args": [
"%DOCFILE%"
]
}, {
"command": "xelatex",
"args": [
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"%DOC%"
]
}, {
"command": "xelatex",
"args": [
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"%DOC%"
]
}
]
这样就配置结束了,ctrl+alt+b编译,ctrl+alt+t查看。