コンパイルできなくなった原因
LaTeX Workshopの最近のアップデートで"latex-workshop.latex.toolchain"
という設定項目がなくなり,"latex-workshop.latex.recipes"
と"latex-workshop.latex.tools"
という新しい設定項目になったのが原因でした.
対処法
ユーザー設定の
"latex-workshop.latex.toolchain": [
{
"command": "ptex2pdf",
"args": [
"-l",
"-ot",
"-kanji=utf8 -synctex=1",
"%DOC%"
]
}
],
を
"latex-workshop.latex.recipes": [
{
"name": "ptex2pdf",
"tools": [
"ptex2pdf",
]
}
],
"latex-workshop.latex.tools": [
{
"name": "ptex2pdf",
"command": "ptex2pdf",
"args": [
"-l",
"-ot",
"-kanji=utf8 -synctex=1",
"%DOC%"
]
}
],
に書き換えます.