Mac:VSCode XeLatex 配置

配置文件中:
在右侧user处修改以覆盖配置latex-workshop.latex.toolchain

    "latex-workshop.latex.toolchain":[
        {
            "command": "xelatex",
            "args": [
                "-synctex=1",
                "-interaction=nonstopmode",
                "-file-line-error",
                "%DOC%"
            ]
        },{
            "command":"bibtex",
            "args":[
                "%DOCFILE%"
            ]
        },{
            "command":"xelatex",
            "args":[
                "-synctex=1",
                "-interaction=nonstopmode",
                "-file-line-error",
                "%DOC%"
            ]
        },{
            "command":"xelatex",
            "args":[
                "-synctex=1",
                "-interaction=nonstopmode",
                "-file-line-error",
                "%DOC%"
            ]
        }
    ],

control+option+b编译
control+option+t查看

你可能感兴趣的:(Mac)