Orash 发表于 2022-7-23 22:08:33

macos下latex配置json文件

{
      "latex-workshop.latex.recipes": [{
      "name": "xelatex",
      "tools": [
            "xelatex"
      ]
      }, {
      "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": "xelatex",
      "command": "xelatex",
      "args": [
      "-synctex=1",
      "-interaction=nonstopmode",
      "-file-line-error",
      "-shell-escape",
      "%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",
      "latex-workshop.latex.clean.fileTypes": [
      "*.aux",
      "*.bbl",
      "*.blg",
      "*.idx",
      "*.ind",
      "*.lof",
      "*.lot",
      "*.out",
      "*.toc",
      "*.acn",
      "*.acr",
      "*.alg",
      "*.glg",
      "*.glo",
      "*.gls",
      "*.ist",
      "*.fls",
      "*.log",
      "*.fdb_latexmk"
      ],
      "editor.suggestSelection": "first",
      "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
      "editor.fontWeight": null,
      "editor.codeActionsOnSave": null,
      "editor.quickSuggestions": {
      "other": true,
      "comments": true,
      "strings": true
      },
    "kite.showWelcomeNotificationOnStartup": false,
    "editor.wordWrap": "on",
    "editor.fontSize": 20,
}

Scelsi 发表于 2022-8-1 13:30:29

呜呜呜orashshsh
页: [1]
查看完整版本: macos下latex配置json文件