-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpapers.code-workspace
More file actions
56 lines (50 loc) · 1.2 KB
/
papers.code-workspace
File metadata and controls
56 lines (50 loc) · 1.2 KB
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
{
"folders": [
{
"path": ".",
},
],
"settings": {
"json.schemaDownload.trustedDomains": {
"https://models.dev": true,
"https://opencode.ai": true,
},
"latex-workshop.latex.tools": [
{
"name": "latexmk",
"command": "latexmk",
"args": [
"-cd",
"-Werror",
"-pdf",
"-dir-report",
"-rc-report",
"--aux-directory=%AUXDIR%",
"--output-directory=%OUTDIR%",
"-showextraoptions",
"-interaction=nonstopmode",
"-synctex=1",
"-file-line-error",
"-shell-escape",
"-f",
"-gg",
"-r",
"%DIR%/.latexmkrc",
"%DOC%",
],
},
],
"latex-workshop.latex.recipes": [
{
"name": "latexmk",
"tools": ["latexmk"],
},
],
// "latex-workshop.latex.recipe.default": "latexmk",
"latex-workshop.latex.outDir": "%DIR%/.cache/out",
"latex-workshop.latex.auxDir": "%DIR%/.cache/aux",
"latex-workshop.format.fixQuotes.enabled": false,
"latex-workshop.format.fixMath.enabled": false,
"latex-workshop.latex.autoBuild.run": "onSave",
},
}