LaTex+Vscode的json配置

我的配置备份
vocode setting.json

    // ---------------------latext---------------------------------
    "latex-workshop.latex.autoBuild.run": "never",
    "latex-workshop.showContextMenu": true,
    "latex-workshop.intellisense.package.enabled": true,
    "latex-workshop.message.error.show": false,
    "latex-workshop.message.warning.show": false,
    "latex-workshop.latex.tools": [
        {
    
    
            "name": "xelatex",
            "command": "xelatex",
            "args": [
                "-synctex=1",
                "-interaction=nonstopmode",
                "-file-line-error",
                "%DOCFILE%"
            ]
        },
        {
    
    
            "name": "pdflatex",
            "command": "pdflatex",
            "args": [
                "-synctex=1",
                "-interaction=nonstopmode",
                "-file-line-error",
                "%DOCFILE%"
            ]
        },
        {
    
    
            "name": "latexmk",
            "command": "latexmk",
            "args": [
                "-synctex=1",
                "-interaction=nonstopmode",
                "-file-line-error",
                "-pdf",
                "-outdir=%OUTDIR%",
                "%DOCFILE%"
            ]
        },
        {
    
    
            "name": "bibtex",
            "command": "bibtex",
            "args": [
                "%DOCFILE%"
            ]
        }
    ],
    "latex-workshop.latex.recipes": [
        {
    
    
            "name": "XeLaTeX",
            "tools": [
                "xelatex"
            ]
        },
        {
    
    
            "name": "PDFLaTeX",
            "tools": [
                "pdflatex"
            ]
        },
        {
    
    
            "name": "BibTeX",
            "tools": [
                "bibtex"
            ]
        },
        {
    
    
            "name": "LaTeXmk",
            "tools": [
                "latexmk"
            ]
        },
        {
    
    
            "name": "xelatex -> bibtex -> xelatex*2",
            "tools": [
                "xelatex",
                "bibtex",
                "xelatex",
                "xelatex"
            ]
        },
        {
    
    
            "name": "pdflatex -> bibtex -> pdflatex*2",
            "tools": [
                "pdflatex",
                "bibtex",
                "pdflatex",
                "pdflatex"
            ]
        },
    ],
    "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"
    ],
    "latex-workshop.latex.autoClean.run": "onFailed",
    "latex-workshop.latex.recipe.default": "lastUsed",
    "latex-workshop.view.pdf.internal.synctex.keybinding": "double-click",
    "window.zoomLevel": 1,
    "[json]": {
    
    

        "editor.quickSuggestions": {
    
    
            "strings": true
        },
        "editor.suggest.insertMode": "replace"
    },
    "latex-workshop.view.pdf.viewer": "tab",   //vscode内反向搜索预览
    "json.schemas": [
    
    ],
    "editor.fontLigatures": null,

    // ---------------------latext---------------------------------

猜你喜欢

转载自blog.csdn.net/yjh_SE007/article/details/117786360
今日推荐