如何在 VSCode 扩展“LaTeX workshop”中不使用 biber 加载 LuaLaTeX?

如何在 VSCode 扩展“LaTeX workshop”中不使用 biber 加载 LuaLaTeX?
    "latex-workshop.latex.recipes": [
        {
            "name": "lualatex->biber->lualatex",
            "tools": [
                "lualatex",
                "biber",
                "lualatex"
            ]
        }
    ],
    "latex-workshop.latex.tools": [
        {
            "name": "lualatex",
            "command": "lualatex",
            "args": [
                "-synctex=1",
                "-interaction=nonstopmode",
                "-file-line-error",
                "-pdf",
                "%DOC%"
            ]
        },
        {
            "name": "biber",
            "command": "biber",
            "args": [
                "%DOCFILE%"
            ]
        }
    ],

如何实现,如果没有 biber 文件,vs 代码扩展“latex workshop”将只运行 lualatex?

相关内容