-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathlatex-workshop-settings.json
More file actions
79 lines (79 loc) · 1.9 KB
/
latex-workshop-settings.json
File metadata and controls
79 lines (79 loc) · 1.9 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"latex-workshop.latex.tools": [
{
"name": "pdflatex",
"command": "pdflatex",
"args": [
"-interaction=nonstopmode",
"-synctex=1",
"-output-directory=../output",
"%DOC%"
]
},
{
"name": "makeindex",
"command": "makeindex",
"args": [
"-o",
"../output/%DOCFILE%.ind",
"../output/%DOCFILE%.idx"
]
},
{
"name": "biber",
"command": "biber",
"args": [
"%DOCFILE%"
]
}
],
"latex-workshop.latex.recipes": [
{
"name": "pdflatex",
"tools": [
"pdflatex"
]
},
{
"name": "pdflatex -> makeindex -> pdflatex",
"tools": [
"pdflatex",
"makeindex",
"pdflatex"
]
},
{
"name": "pdflatex -> biber -> pdflatex",
"tools": [
"pdflatex",
"biber",
"pdflatex"
]
}
],
"latex-workshop.latex.outDir": "../output",
"latex-workshop.view.pdf.viewer": "tab",
"latex-workshop.view.pdf.internal.synctex.enabled": true,
"latex-workshop.latex.autoBuild.run": "onSave",
"latex-workshop.latex.autoClean.run": "onBuilt",
"latex-workshop.latex.clean.fileTypes": [
"*.aux",
"*.bbl",
"*.blg",
"*.idx",
"*.ind",
"*.lof",
"*.lot",
"*.out",
"*.toc",
"*.acn",
"*.acr",
"*.alg",
"*.bcf",
"*.run.xml",
"*.fdb_latexmk",
"*.synctex.gz"
],
"latex-workshop.message.error.show": false,
"latex-workshop.message.warning.show": false
}