0%

miktex+vscode错误



写在前面:

参考文章:

  1. 1. 错误的recipes

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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401

// // ======================== LaTeX 设置 BEGIN ========================
// // bibtex 格式
// "latex-workshop.bibtex-format.tab": "tab",

// // 自动编译,全部关闭,当且仅当你认为有需要的时候才会去做编译
// "latex-workshop.latex.autoBuild.run": "never",
// "latex-workshop.latex.autoBuild.cleanAndRetry.enabled": false,

// // 设置 latex-workshop 的 PDF 预览程序,external 指的是外部程序
// "latex-workshop.view.pdf.viewer": "external",
// "latex-workshop.view.pdf.ref.viewer": "external",
// "latex-workshop.view.pdf.external.viewer.command": "D:/App/SumatraPDF/SumatraPDF.exe", // 注意修改路径
// "latex-workshop.view.pdf.external.viewer.args": [
// "%PDF%"
// ],

// // 配置正向、反向搜索:.tex -> .pdf
// "latex-workshop.view.pdf.external.synctex.command": "D:/App/SumatraPDF/SumatraPDF.exe", // 注意修改路径
// "latex-workshop.view.pdf.external.synctex.args": [
// // 正向搜索
// "-forward-search",
// "%TEX%",
// "%LINE%",
// "-reuse-instance",
// // 反向搜索
// "-inverse-search",
// "\"D:/App/Microsoft VS Code/Code.exe\" \"D:/App/Microsoft VS Code/resources/app/out/cli.js\" -gr %f:%l",
// "%PDF%"
// ],

// // 这是一些独立的编译选项,可以作为工具被编译方案调用
// "latex-workshop.latex.tools": [
// {
// // Windows 原生安装 TeX Live 2020 的编译选项
// "name": "Windows XeLaTeX",
// "command": "xelatex",
// "args": [
// "-synctex=1",
// "-interaction=nonstopmode",
// "-file-line-error",
// "-pdf",
// "%DOCFILE%"
// ]
// },
// {
// // Windows Biber 编译
// "name": "Windows Biber",
// "command": "biber",
// "args": [
// "%DOCFILE%"
// ]
// },
// {
// // WSL XeLaTeX 编译一般的含有中文字符的文档
// "name": "WSL XeLaTeX",
// "command": "wsl",
// "args": [
// "/usr/local/texlive/2020/bin/x86_64-linux/xelatex",
// "-synctex=1",
// "-interaction=nonstopmode",
// "-file-line-error",
// "-pdf",
// //"-output-directory=%OUTDIR%",
// //"-aux-directory=%OUTDIR%",
// "%DOCFILE%"
// ]
// },
// {
// // WSL biber / bibtex 编译带有 citation 标记项目的文档
// "name": "WSL Biber",
// "command": "wsl",
// "args": [
// "/usr/local/texlive/2020/bin/x86_64-linux/biber",
// "%DOCFILE%"
// ]
// }
// ],

// // 这是一些编译方案,会出现在 GUI 菜单里
// "latex-workshop.latex.recipes": [

// {
// // 1.1 Windows 编译简单的小文档,这个选项不太常用,因为绝大多数文章都需要有参考文献索引
// "name": "Windows XeLaTeX 简单编译",
// "tools": [
// "Windows XeLaTeX"
// ]
// },
// {
// // 1.2 Windows 编译带有索引的论文,需要进行四次编译;-> 符号只是一种标记而已,没有程序上的意义
// "name": "Windows xe->bib->xe->xe 复杂编译",
// "tools": [
// "Windows XeLaTeX",
// "Windows Biber",
// "Windows XeLaTeX",
// "Windows XeLaTeX"
// ]
// },
// {
// // 2.1 WSL 编译简单的小文档,这个选项不太常用,因为我绝大多数文章都需要有引用。
// "name": "XeLaTeX 简单编译",
// "tools": [
// "WSL XeLaTeX"
// ]
// },
// {
// // 2.2 带有 citation 索引的文档,需要进行四次编译;-> 符号只是一种标记而已,没有程序上的意义
// "name": "xe->bib->xe*2 复杂编译",
// "tools": [
// "WSL XeLaTeX",
// "WSL Biber",
// "WSL XeLaTeX",
// "WSL XeLaTeX"
// ]
// }
// ],

// // 清空中间文件
// "latex-workshop.latex.clean.fileTypes": [
// "*.aux",
// "*.bbl",
// "*.blg",
// "*.idx",
// "*.ind",
// "*.lof",
// "*.lot",
// "*.out",
// "*.toc",
// "*.acn",
// "*.acr",
// "*.alg",
// "*.glg",
// "*.glo",
// "*.gls",
// "*.ist",
// "*.fls",
// "*.log",
// "*.fdb_latexmk",
// "*.bcf",
// "*.run.xml",
// "*.synctex.gz"
// ],
// "explorer.confirmDelete": false
// // ======================== LaTeX 设置 END ========================

// ##########################
// try 1
// "latex-workshop.latex.tools": [
// {
// "name": "xelatex",
// "command": "xelatex",
// "args": [
// "-synctex=1",
// "-interaction=nonstopmode",
// "-file-line-error",
// "%DOC%"
// ]
// },
// {
// "name": "latexmk",
// "command": "latexmk",
// "args": [
// "-synctex=1",
// "-interaction=nonstopmode",
// "-file-line-error",
// "-pdf",
// "%DOC%"
// ]
// },
// {
// "name": "texify",
// "command": "texify",
// "args": [
// "--synctex",
// "--pdf",
// "--tex-option=\"-interaction=nonstopmode\"",
// "--tex-option=\"-file-line-error\"",
// "%DOC%.tex"
// ],
// "env": {}
// },
// {
// "name": "pdflatex",
// "command": "pdflatex",
// "args": [
// "-synctex=1",
// "-interaction=nonstopmode",
// "-file-line-error",
// "%DOC%"
// ]
// },
// {
// "name": "bibtex",
// "command": "bibtex",
// "args": [
// "%DOCFILE%"
// ]
// },
// {
// "name": "biber",
// "command": "biber",
// "args": [
// "%DOCFILE%"
// ]
// }
// ]
// ##########################

// latex try
// ******************** begin *************************

// "latex-workshop.latex.recipes": [

// {
// "name": "sjtu thesis 🔃",
// "tools": [
// "cleanall",
// "latexmk",
// "clean"
// ]
// },
// {
// "name": "xelatex 😄",
// "tools": [
// "xelatex",
// "clean"
// ]
// },
// {
// "name": "bibtex 🐷",
// "tools": [
// "bibtex"
// ]
// },
// {
// "name": "pdflatex ➞ bibtex ➞ pdflatex`×2",
// "tools": [
// "pdflatex",
// "bibtex",
// "pdflatex",
// "pdflatex"
// ]
// }
// ],
// "latex-workshop.latex.tools": [
// {
// "name": "latexmk",
// "command": "latexmk",
// "args": [
// "-synctex=1",
// "-interaction=nonstopmode",
// "-file-line-error",
// "-halt-on-error",
// "%DOC%"
// ],
// "env": {}
// },
// {
// "name": "xelatex",
// "command": "xelatex",
// "args": [
// "-synctex=1",
// "-interaction=nonstopmode",
// "-file-line-error",
// "%DOC%"
// ]
// },
// {
// "name": "pdflatex",
// "command": "pdflatex",
// "args": [
// "-synctex=1",
// "-interaction=nonstopmode",
// "-file-line-error",
// "%DOCFILE%"
// ]
// },
// {
// "name": "bibtex",
// "command": "bibtex",
// "args": [
// "%DOCFILE%"
// ]
// },
// {
// "name": "clean",
// "command": "latexmk",
// "args": [
// "-quiet",
// "-c",
// "%DOC%"
// ]
// },
// {
// "name": "cleanall",
// "command": "latexmk",
// "args": [
// "-quiet",
// "-C",
// "%DOC%"
// ]
// }
// ],
// ******************** end *************************

// Latex workshop try---1
// ********************begin*************************
// "latex-workshop.latex.tools": [
// {
// "name": "latexmk",
// "command": "latexmk",
// "args": [
// "-synctex=1",
// "-interaction=nonstopmode",
// "-file-line-error",
// "-pdf",
// "%DOC%"
// ]
// },
// {
// "name": "xelatex",
// "command": "xelatex",
// "args": [
// "-synctex=1",
// "-interaction=nonstopmode",
// "-file-line-error",
// "%DOC%"
// ]
// },
// {
// "name": "pdflatex",
// "command": "pdflatex",
// "args": [
// "-synctex=1",
// "-interaction=nonstopmode",
// "-file-line-error",
// "%DOC%"
// ]
// },
// {
// "name": "bibtex",
// "command": "bibtex",
// "args": [
// "%DOCFILE%"
// ]
// }
// ],
// "latex-workshop.latex.recipes": [

// {
// "name": "latexmk 🔃",
// "tools": [
// "latexmk"
// ]
// },
// {
// "name": "xelatex",
// "tools": [
// "xelatex"
// ]
// },


// {
// "name": "pdflatex -> bibtex -> pdflatex*2",
// "tools": [
// "pdflatex",
// "bibtex",
// "pdflatex",
// "pdflatex"
// ]
// }
// ],

// "latex-workshop.view.pdf.viewer": "tab",
// "latex-workshop.latex.clean.fileTypes": [
// "*.aux",
// "*.bbl",
// "*.blg",
// "*.idx",
// "*.ind",
// "*.lof",
// "*.lot",
// "*.out",
// "*.toc",
// "*.acn",
// "*.acr",
// "*.alg",
// "*.glg",
// "*.glo",
// "*.gls",
// "*.ist",
// "*.fls",
// "*.log",
// "*.fdb_latexmk"
// ],
// //"latex-workshop.autoClean.run": "onBuilt",
// //"latex-workshop.latex.autoBuild.cleanAndRetry.enabled": true,
// "explorer.confirmDelete": false
// ******************** end *************************