0%

VS Code 配置LaTeX环境(MikTex)

概述

之前都是用VNote编辑LaTeX公式,看到网上有人使用VS Code来编辑,故也来折腾一下。

安装MikTex

MikTex官网下载,安装,然后以管理员身份运行MiKTeX Console(可以在开始菜单中搜索)
PS: 先不安装拓展包,等编译时自然会提示安装

配置VS Code

安装Latex workshopLaTeX language support拓展
新建.vscode文件夹,创建settings.json,写入以下内容:

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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"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": "latexmk",
"command": "latexmk",
"args": [
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"-pdf",
"%DOC%"
]
}, {
"name": "xelatex",
"command": "xelatex",
"args": [
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"%DOC%"
]
}, {
"name": "pdflatex",
"command": "pdflatex",
"args": [
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"%DOC%"
]
}, {
"name": "bibtex",
"command": "bibtex",
"args": [
"%DOCFILE%"
]
}],
"latex-workshop.view.pdf.viewer": "tab",
"latex-workshop.latex.clean.fileTypes": [
"*.aux",
"*.bbl",
"*.blg",
"*.idx",
"*.ind",
"*.lof",
"*.lot",
"*.out",
"*.toc",
"*.acn",
"*.acr",
"*.alg",
"*.glg",
"*.glo",
"*.gls",
"*.ist",
"*.fls",
"*.log",
"*.fdb_latexmk"
],
}

重启VS Code

首次编译tex文件

重启VS Code后,创建后缀为.tex的文件,写入

1
2
3
4
5
\documentclass[UTF8]{ctexart}
\usepackage{ctex}
\begin{document}
你好,World!
\end{document}

点击左边的TEX图标,选择Build LaTeX projectRecipe任选一个进行编译。
这时MiKTeX Console就会弹出安装拓展包的请求,逐一安装即可。
之后新建其他文件后,也需要手动选择Build LaTeX project进行编译

预览

右上角有个小图标,点击即可预览。(快捷键Ctrl+Alt+V

即时预览

两个窗口都处于打开状态时可以即时预览
注意:需要保存(Ctrl+S)文件后才会更新pdf。

参考

论文写作的又一利器:VSCode + Latex Workshop + MikTex + Git
Visual Studio Code 编辑 LaTex 入门 (一)