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 @   Notomato  阅读(23)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· 在鹅厂做java开发是什么体验
· 百万级群聊的设计实践
· WPF到Web的无缝过渡:英雄联盟客户端的OpenSilver迁移实战
· 永远不要相信用户的输入:从 SQL 注入攻防看输入验证的重要性
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
点击右上角即可分享
微信分享提示