forked from filippodaniotti/Appunti-LFC
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathAppunti-LFC.code-workspace
63 lines (63 loc) · 1.31 KB
/
Appunti-LFC.code-workspace
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
{
"folders": [
{
"path": "."
}
],
"settings": {
"latex-workshop.latex.autoBuild.run": "never",
"latex-workshop.latex.autoClean.run": "onBuilt",
"latex-workshop.latex.clean.subfolder.enabled": true,
"latex-workshop.latex.clean.fileTypes": [
"*.aux",
"*.bbl",
"*.blg",
"*.idx",
"*.ind",
"*.lof",
"*.lot",
"*.out",
"*.toc",
"*.acn",
"*.acr",
"*.alg",
"*.glg",
"*.glo",
"*.gls",
"*.fls",
"*.log", // use log file to check errors
"*.fdb_latexmk",
"*.snm",
"*.synctex(busy)",
"*.synctex.gz(busy)",
"*.gz",
"*.nav",
"_minted*/*", //remove all minted folders content
"_minted*/" //remove the actual folder
],
"latex-workshop.latex.tools": [
{
"name": "pdflatex",
"command": "pdflatex",
"args": [
"-shell-escape",
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
// to compile always main.tex (even when saving a subfile)
"-output-directory=%WORKSPACE_FOLDER%/src",
"%WORKSPACE_FOLDER%/src/main.tex" // Original Path for
// to compile only the current file (useful when saving a subfile)
// "-output-directory=%OUTDIR%",
// "%DOC%"
]
}
],
"latex-workshop.latex.recipes": [
{
"name": "pdflatex",
"tools": ["pdflatex", "pdflatex", "pdflatex"]
}
]
}
}