VS Code - LaTeX 研讨会 - 自定义配方文件位置

VS Code - LaTeX 研讨会 - 自定义配方文件位置

我想使用 VS Code 扩展 LaTeX Workshop,并想设置我自己的文档编译配方。常见问题解答很好,但缺少说明配方存储位置以及自定义配方存放位置的部分。有人能帮我吗?

答案1

假设您必须制作pdflatex仅使用一次的食谱,而不是pdflatex> biblatex> pdflatex> pdflatex

settings.json

  • 将其添加到"latex-workshop.latex.recipes"

    {
        "name": "pdflatex",
        "tools": [
          "pdflatex"
        ]
    }
    
  • "latex-workshop.latex.tools"如果不存在则添加:

    {
        "name": "pdflatex",
        "command": "pdflatex",
        "args": [
            "--shell-escape", // if you want to have the shell-escape flag
            "-synctex=1",
            "-interaction=nonstopmode",
            "-file-line-error",
            "%DOC%.tex"
        ]
    }
    

不要忘记在“%DOC%”后添加.tex。

答案2

这是我在 settings.json 中输入的方法,效果很好。感谢 user156344。

{
    "workbench.colorTheme": "Noctis",
    "editor.fontFamily": "'Droid Sans Fallback', 'Droid Sans Mono', 'monospace', monospace",
    "editor.fontSize": 20,
    "files.autoSave": "afterDelay",
    "files.autoSaveDelay": 5000,
    "latex-workshop.view.pdf.viewer": "tab",
    "latex-workshop.latex.tools": [
        {
            "name": "pdflatex",
            "command": "pdflatex",
            "args": [
                "--shell-escape", // if you want to have the shell-escape flag
                "-synctex=1",
                "-interaction=nonstopmode",
                "-file-line-error",
                "%DOC%"
            ]
        }
    ],
    "latex-workshop.latex.recipes": [
        {
            "name": "pdflatex",
            "tools": [
                "pdflatex"
            ]
        }
    ]
}

答案3

要编辑食谱,您应该前往代码Tab(来自程序名称 Visual Studio Code),然后优先,然后从那里设置。打开扩展设置树,您将找到您的 LaTeX(Workshop)设置。单击“在 settings.json 中编辑”,您将看到打开的文件以供编辑。

相关内容