0
|
1 {
|
|
2 "latex-workshop.latex.tools": [
|
|
3 {
|
|
4 "name": "latexmk",
|
|
5 "command": "latexmk",
|
|
6 "args": [
|
|
7 "-synctex=1",
|
|
8 "-interaction=nonstopmode",
|
|
9 "-file-line-error",
|
|
10 "-pdf",
|
|
11 "%DOC%"
|
|
12 ]
|
|
13 },
|
|
14 {
|
|
15 "name": "pdflatex",
|
|
16 "command": "pdflatex",
|
|
17 "args": [
|
|
18 "-synctex=1",
|
|
19 "-interaction=nonstopmode",
|
|
20 "-file-line-error",
|
|
21 "%DOC%"
|
|
22 ]
|
|
23 },
|
|
24 {
|
|
25 "name": "bibtex",
|
|
26 "command": "bibtex",
|
|
27 "args": [
|
|
28 "%DOCFILE%"
|
|
29 ]
|
|
30 },
|
|
31 {
|
|
32 "name":"ptex2pdf",
|
|
33 "command": "ptex2pdf",
|
|
34 "args": [
|
|
35 "-l",
|
|
36 "-ot",
|
|
37 "-kanji=utf8 -synctex=1",
|
|
38 "%DOC%"
|
|
39 ]
|
|
40 },
|
|
41 {
|
|
42 "name":"ptex2pdf (uplatex)",
|
|
43 "command": "ptex2pdf",
|
|
44 "args": [
|
|
45 "-l",
|
|
46 "-u",
|
|
47 "-ot",
|
|
48 "-kanji=utf8 -synctex=1",
|
|
49 "%DOC%"
|
|
50 ]
|
|
51 },
|
|
52 {
|
|
53 "name": "pbibtex",
|
|
54 "command": "pbibtex",
|
|
55 "args": [
|
|
56 "-kanji=utf8",
|
|
57 "%DOCFILE%"
|
|
58 ]
|
|
59 }
|
|
60 ],
|
|
61 "latex-workshop.latex.recipes": [
|
|
62 {
|
|
63 "name": "latexmk",
|
|
64 "tools": [
|
|
65 "latexmk"
|
|
66 ]
|
|
67 },
|
|
68 {
|
|
69 "name": "pdflatex*2",
|
|
70 "tools": [
|
|
71 "pdflatex",
|
|
72 "pdflatex"
|
|
73 ]
|
|
74 },
|
|
75 {
|
|
76 "name": "pdflatex -> bibtex -> pdflatex*2",
|
|
77 "tools": [
|
|
78 "pdflatex",
|
|
79 "bibtex",
|
|
80 "pdflatex",
|
|
81 "pdflatex"
|
|
82 ]
|
|
83 },
|
|
84 {
|
|
85 "name": "ptex2pdf*2",
|
|
86 "tools": [
|
|
87 "ptex2pdf",
|
|
88 "ptex2pdf"
|
|
89 ]
|
|
90 },
|
|
91 {
|
|
92 "name": "ptex2pdf -> pbibtex -> ptex2pdf*2",
|
|
93 "tools": [
|
|
94 "ptex2pdf",
|
|
95 "pbibtex",
|
|
96 "ptex2pdf",
|
|
97 "ptex2pdf"
|
|
98 ]
|
|
99 },
|
|
100 {
|
|
101 "name": "ptex2pdf (uplatex) *2",
|
|
102 "tools": [
|
|
103 "ptex2pdf (uplatex)",
|
|
104 "ptex2pdf (uplatex)"
|
|
105 ]
|
|
106 },
|
|
107 {
|
|
108 "name": "ptex2pdf (uplatex) -> pbibtex -> ptex2pdf (uplatex) *2",
|
|
109 "tools": [
|
|
110 "ptex2pdf (uplatex)",
|
|
111 "pbibtex",
|
|
112 "ptex2pdf (uplatex)",
|
|
113 "ptex2pdf (uplatex)"
|
|
114 ]
|
|
115 },
|
|
116 ]
|
|
117 } |