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"
}

上一篇:【jQuery UI 1.8 The User Interface Library for jQuery】.学习笔记.7.Slider控件


下一篇:.12-浅析webpack源码之NodeWatchFileSystem模块总览