Windows 下配置 TeXLive 和 VScode 的 $\LaTeX$ 环境
快速部署 $\LaTeX$ 环境。
安装 TeXLive
首先要安装 TeXLive ,推荐下载 TeXLive 的 ISO 镜像,因为在线安装下载过程会很慢。
境内教育网镜像:
1 | 华中科大:http://mirror.hust.edu.cn/CTAN/systems/texlive/post-img/texlive2018.iso |
下载完成后,挂载镜像,执行 install-tl-advanced.bat
开始安装。安装除了路径自定义以外,其他默认即可。
安装完确认,环境变量已经配置好。在高级系统设置的环境变量页面中,系统变量里面找到 PATH
,并在末尾添加“C:\texlive\bin\win32
”(在本例中路径为 C:\texlive\
,请根据实际情况自行更换路径。效果以打开命令提示符,能正常执行 latex
命令为准。
配置 VScode
安装 LaTeX Workshop 插件
在 Perferences -> Settings 里面添加
xelatex
编译语句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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65{
"latex-workshop.latex.recipes": [
{
"name": "xelatex",
"tools": [
"xelatex"
]
},
{
"name": "latexmk",
"tools": [
"latexmk"
]
},
{
"name": "pdflatex -> bibtex -> pdflatex*2",
"tools": [
"pdflatex",
"bibtex",
"pdflatex",
"pdflatex"
]
}
],
"latex-workshop.latex.tools": [
{
"name": "xelatex",
"command": "xelatex",
"args": [
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"%DOC%"
]
},
{
"name": "latexmk",
"command": "latexmk",
"args": [
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"-pdf",
"%DOC%"
]
},
{
"name": "pdflatex",
"command": "pdflatex",
"args": [
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"%DOC%"
]
},
{
"name": "bibtex",
"command": "bibtex",
"args": [
"%DOCFILE%"
]
}
],
}设置完成,即可使用。
ctrl + s
保存后 VScode 自动编译,右侧可以显示 pdf 非常方便。
更多快捷键可以 F1
查看。
Windows 下配置 TeXLive 和 VScode 的 $\LaTeX$ 环境