其他分享
首页 > 其他分享> > Mac vscode 设置latex setting.json 位置

Mac vscode 设置latex setting.json 位置

作者:互联网

 

{
    // "latex-workshop.latex.recipes": [
    //   {
    //     "name": "xelatex",
    //     "tools": [
    //       "xelatex"
    //     ]
    //   },
    //   {
    //     "name": "xe*2",
    //     "tools": [
    //       "xelatex",
    //       "xelatex"
    //     ]
    //   },
    //   {
    //     "name": "xelatex -> bibtex -> xelatex*2",
    //     "tools": [
    //       "xelatex",
    //       "bibtex",
    //       "xelatex",
    //       "xelatex"
    //     ]
    //   }
    // ],
    // "latex-workshop.latex.tools": [
    //   {
    //     "name": "latexmk",
    //     "command": "latexmk",
    //     "args": [
    //       "-synctex=1",
    //       "-interaction=nonstopmode",
    //       "-file-line-error",
    //       "-pdf",
    //       "%DOC%"
    //     ]
    //   },
    //   {
    //     "name": "xelatex",
    //     "command": "xelatex",
    //     "args": [
    //       "-synctex=1",
    //       "-interaction=nonstopmode",
    //       "-file-line-error",
    //       "%DOC%"
    //     ]
    //   },
    //   {
    //     "name": "bibtex",
    //     "command": "bibtex",
    //     "args": [
    //       "%DOCFILE%"
    //     ]
    //   }
    // ],
    "latex-workshop.latex.recipes": [{
        "name": "latexmk",
        "tools": [
            "latexmk"
        ]
    },
    {
        "name": "pdflatex -> bibtex -> pdflatex*2",
        "tools": [
            "pdflatex",
            "bibtex",
            "pdflatex",
            "pdflatex"
        ]
    }
    ],
        "latex-workshop.latex.tools": [{
          "name": "latexmk",
          "command": "latexmk",
          "args": [
              "-synctex=1",
              "-interaction=nonstopmode",
              "-file-line-error",
              "-pdf",
              "%DOC%"
          ]
          
      }, {
          "name": "pdflatex",
          "command": "pdflatex",
          "args": [
              "-synctex=1",
              "-interaction=nonstopmode",
              "-file-line-error",
              "%DOC%"
          ]
      }, {
          "name": "bibtex",
          "command": "bibtex",
          "args": [
              "%DOCFILE%"
          ]
      }],
    "latex-workshop.view.pdf.viewer": "tab",
    "window.zoomLevel": 2,
    "git.enableSmartCommit": true,
    "latex-workshop.latex.autoBuild.run": "never",
    "workbench.colorTheme": "Solarized Light"
}

标签:latex,pdflatex,name,vscode,json,xelatex,bibtex,tools
来源: https://blog.csdn.net/u013288190/article/details/121067028