Skip to content

Commit

Permalink
新增 vscode 编译配置
Browse files Browse the repository at this point in the history
  • Loading branch information
sikouhjw committed Mar 6, 2024
1 parent ccc6613 commit 46e82e0
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
{
"latex-workshop.latex.recipes": [
{
"name": "xelatex",
"tools": [
"xelatex"
]
},
{
"name": "latexmk -xe",
"tools": [
"xelatexmk"
]
},
],
"latex-workshop.latex.tools": [
{
"name": "xelatexmk",
"command": "latexmk",
"args": [
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"-xelatex",
"-outdir=%OUTDIR%",
"%DOCFILE%"
],
"env": {}
},
{
"name": "xelatex",
"command": "xelatex",
"args": [
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"%DOCFILE%"
],
"env": {}
},
],
}

0 comments on commit 46e82e0

Please sign in to comment.