VsCode配置

{
    "latex-workshop.latex.tools": [
    { 
      "name": "latexmk", 
      "command": "latexmk", 
      "args": [ 
          "-synctex=1", 
          "-interaction=nonstopmode", 
          "-file-line-error", 
          // "-pdf", 
          "-outdir=%OUTDIR%", 
          "%DOC%" 
      ], 
      "env": {} 
    }, 
    {
     "name": "pdflatex",
     "command": "pdflatex",
     "args": [
       "-synctex=1",
       "-interaction=nonstopmode",
       "-file-line-error",
       "%DOCFILE%"
     ]
    },
    {
     "name": "bibtex",
     "command": "bibtex",
     "args": [
       "%DOCFILE%"
     ]
    },
    {
     "name": "xelatex",
     "command": "xelatex",
     "args": [
       "-synctex=1",
       "-interaction=nonstopmode",
       "-file-line-error",
       "-pdf",
       "%DOC%"
     ]
    },
    ],
 // 编译策略
    "latex-workshop.latex.recipes": [
      {
        "name": "latexmk",
        "tools": [
            "latexmk"
        ]
      },
    {
        "name": "xelatex",
        "tools": [
            "xelatex"
        ],
    },
    ],
    "editor.fontLigatures": false,
    "editor.mouseWheelZoom": true,
    "latex-workshop.view.pdf.viewer": "tab",
    "latex-workshop.showContextMenu": true,
    "latex-workshop.message.warning.show": false,
    "latex-workshop.message.information.show": false,
    "editor.unicodeHighlight.includeStrings": false,
    "files.autoSave": "afterDelay",
    "workbench.colorTheme": "One Dark Pro",
    "editor.wordWrap": "on",
    "git.enableSmartCommit": true,
    "git.allowForcePush": true,
    "git.confirmForcePush": false,
    "git.autofetch": true,
    "workbench.startupEditor": "none",
    "latex-workshop.view.pdf.invert": 0,
    "editor.unicodeHighlight.allowedLocales": {
      "ja": true,
      "zh-hans": true
    },
    "git.ignoreLegacyWarning": true,
    "explorer.confirmDelete": false,
    "[python]": {
      "editor.formatOnType": true
    },
    "latex-workshop.latex.autoBuild.run": "never",
    "editor.minimap.size": "fit",
    "editor.minimap.maxColumn": 40
}
posted @ 2023-04-22 16:56  Notomato  阅读(36)  评论(0)    收藏  举报