LATEX 是基于 Tex 的排版系统,多用于排版高质量的科技类和数学类文档。

Tex Live

TexLive是tex的集合环境,包含了pdfletex,xeletex等编译器。 下载地址: http://ctan.mirrors.hoobly.com/systems/texlive/Images/texlive2017-20170524.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->修改为如下代码

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
    "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查看。