Skip to content

Commit 29483d2

Browse files
committed
set vscode latex command to use --shell-escape
setup workflow from article.template #1
1 parent ba12dbd commit 29483d2

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.vscode/settings.json

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"latex-workshop.latex.recipes": [
3+
{
4+
"name": "pdflatex-shell-escape-recipe",
5+
"tools": [
6+
"pdflatex-shell-escape"
7+
]
8+
}
9+
],
10+
"latex-workshop.latex.tools": [
11+
{
12+
"name": "pdflatex-shell-escape",
13+
"command": "pdflatex",
14+
"args": [
15+
"--shell-escape",
16+
"-synctex=1",
17+
"-interaction=nonstopmode",
18+
"-file-line-error",
19+
"%DOC%"
20+
]
21+
}
22+
]
23+
}

0 commit comments

Comments
 (0)