Skip to content

Commit 46e82e0

Browse files
committed
新增 vscode 编译配置
1 parent ccc6613 commit 46e82e0

File tree

1 file changed

+42
-0
lines changed

1 file changed

+42
-0
lines changed

.vscode/settings.json

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
{
2+
"latex-workshop.latex.recipes": [
3+
{
4+
"name": "xelatex",
5+
"tools": [
6+
"xelatex"
7+
]
8+
},
9+
{
10+
"name": "latexmk -xe",
11+
"tools": [
12+
"xelatexmk"
13+
]
14+
},
15+
],
16+
"latex-workshop.latex.tools": [
17+
{
18+
"name": "xelatexmk",
19+
"command": "latexmk",
20+
"args": [
21+
"-synctex=1",
22+
"-interaction=nonstopmode",
23+
"-file-line-error",
24+
"-xelatex",
25+
"-outdir=%OUTDIR%",
26+
"%DOCFILE%"
27+
],
28+
"env": {}
29+
},
30+
{
31+
"name": "xelatex",
32+
"command": "xelatex",
33+
"args": [
34+
"-synctex=1",
35+
"-interaction=nonstopmode",
36+
"-file-line-error",
37+
"%DOCFILE%"
38+
],
39+
"env": {}
40+
},
41+
],
42+
}

0 commit comments

Comments
 (0)