Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
latextemplates
GitHub Repository: latextemplates/LNCS
Path: blob/main/vscode.settings.json
224 views
1
{
2
"editor.wordWrap": "on",
3
"latex-workshop.view.pdf.viewer": "tab",
4
"latex-workshop.view.pdf.backgroundColor": "#cccccc",
5
"editor.renderWhitespace": "all",
6
"latex-workshop.latex.autoBuild.run": "onSave",
7
"latex-workshop.latex.recipes": [
8
{
9
"name": "lualatex ➞ bibtex ➞ lualatex × 2 🔃",
10
"tools": [
11
"pdflatex",
12
"bibtex",
13
"pdflatex",
14
"pdflatex"
15
]
16
},
17
{
18
"name": "pdflatex ➞ bibtex ➞ pdflatex × 2 🔃",
19
"tools": [
20
"pdflatex",
21
"bibtex",
22
"pdflatex",
23
"pdflatex"
24
]
25
}
26
],
27
"latex-workshop.latex.tools": [
28
{
29
"name": "latexmk",
30
"command": "latexmk",
31
"args": [
32
"%DOC%"
33
],
34
"env": {}
35
},
36
{
37
"name": "pdflatex",
38
"command": "pdflatex",
39
"args": [
40
"-synctex=1",
41
"-interaction=nonstopmode",
42
"-file-line-error",
43
"%DOC%"
44
],
45
"env": {}
46
},
47
{
48
"name": "lualatex",
49
"command": "lualatex",
50
"args": [
51
"-synctex=1",
52
"-interaction=nonstopmode",
53
"-file-line-error",
54
"%DOC%"
55
],
56
"env": {}
57
},
58
{
59
"name": "bibtex",
60
"command": "bibtex",
61
"args": [
62
"%DOCFILE%"
63
],
64
"env": {}
65
},
66
{
67
"name": "rnw2tex",
68
"command": "Rscript",
69
"args": [
70
"-e",
71
"knitr::opts_knit$set(concordance = TRUE); knitr::knit('%DOCFILE_EXT%')"
72
],
73
"env": {}
74
},
75
{
76
"name": "jnw2tex",
77
"command": "julia",
78
"args": [
79
"-e",
80
"using Weave; weave(\"%DOC_EXT%\", doctype=\"tex\")"
81
],
82
"env": {}
83
},
84
{
85
"name": "jnw2texmintex",
86
"command": "julia",
87
"args": [
88
"-e",
89
"using Weave; weave(\"%DOC_EXT%\", doctype=\"texminted\")"
90
],
91
"env": {}
92
},
93
{
94
"name": "tectonic",
95
"command": "tectonic",
96
"args": [
97
"--synctex",
98
"--keep-logs",
99
"%DOC%.tex"
100
],
101
"env": {}
102
}
103
]
104
}
105
106