记录在 Windows10 中采用 \(MixTEX\) 在 VS Code 搭建 \(\LaTeX\) 环境的过程

安装编译器

TexLive 体积过大,采用包管理器进行安装

1
2
# 使用 MikTeX
scoop install miktex

配置 VS Code

安装 LaTeX Workshop 扩展

加入如下配置:

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
{
"latex-workshop.latex.tools": [
{
"name": "xelatex",
"command": "xelatex",
"args": [
"-synctex=1",
"-interaction=nonstopmode",
"-shell-escape",
"-file-line-error",
"%DOC%"
]
},
{
"name": "bibtex",
"command": "bibtex",
"args": ["%DOCFILE%"]
}
],
"latex-workshop.latex.recipes": [
{
"name": "xelatex",
"tools": ["xelatex"]
},
{
"name": "xelatex -> bibtex -> xelatex*2",
"tools": ["xelatex", "bibtex", "xelatex", "xelatex"]
}
]
}

解决报错

1
major issue: So far, you have not checked for MiKTeX updates.

找到 MikTex Console 这个程序,右键点击“以管理员身份运行”,然后点击“检查更新”

Ref:

搭建 LaTeX 舒适写作环境(VSCode) - 知乎 (zhihu.com)