latex vscode 配置参考

我觉得这个博客写的不错VSCode配置LaTeX最详细版,加上wiki文档足够了

// --- Latex 配置 ---
    // 为构建而运行的工具序列
    "latex-workshop.latex.recipes": [
        {
   
            "name": "pdflatex",
            "tools": [
                "pdflatex"
            ]
        },
        {
   
            "name": "xelatex",
            "tools": [
                "xelatex"
            ]
        },
        {
   
            "name": "lualatex",
            "tools": [
                "lualatex"
            ]
        },
        {
   
            "name": "bibTeX",
            "tools": [
                "bibtex"
            ]
        },
        {
   
            "name": "xelatex -> bibtex -> xelatex*2",
            "tools"

你可能感兴趣的:(个人,vscode,windows,ide)