编译环境配置 —— pythonlatex

Posted 海绵小青年

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了编译环境配置 —— pythonlatex相关的知识,希望对你有一定的参考价值。

VScode配置python环境

插件

setting设置

    //python
    
        "python.linting.flake8Enabled": true,
        "python.formatting.provider": "yapf",
        "python.linting.flake8Args": ["--max-line-length=248"],
        "python.linting.pylintEnabled": false,
        "python.languageServer": "Pylance",
        "files.autoSave": "afterDelay",
        "window.zoomLevel": 0,
        "workbench.colorTheme": "Brackets Light Pro Bold",
        "masmtasm.dosbox.console": "normal",
        "masm-code.DOSBox.NoConsole": true,
        "workbench.editorAssociations": [
            
                "viewType": "jupyter.notebook.ipynb",
                "filenamePattern": "*.ipynb"
            
        ],
        "hediet.vscode-drawio.local-storage": "eyIuZHJhd2lvLWNvbmZpZyI6IntcImxhbmd1YWdlXCI6XCJcIixcImN1c3RvbUZvbnRzXCI6W10sXCJsaWJyYXJpZXNcIjpcImdlbmVyYWxcIixcImN1c3RvbUxpYnJhcmllc1wiOltcIkwuc2NyYXRjaHBhZFwiXSxcInBsdWdpbnNcIjpbXSxcInJlY2VudENvbG9yc1wiOltdLFwiZm9ybWF0V2lkdGhcIjoyNDAsXCJjcmVhdGVUYXJnZXRcIjpmYWxzZSxcInBhZ2VGb3JtYXRcIjp7XCJ4XCI6MCxcInlcIjowLFwid2lkdGhcIjo4MjcsXCJoZWlnaHRcIjoxMTY5fSxcInNlYXJjaFwiOnRydWUsXCJzaG93U3RhcnRTY3JlZW5cIjp0cnVlLFwiZ3JpZENvbG9yXCI6XCIjZDBkMGQwXCIsXCJkYXJrR3JpZENvbG9yXCI6XCIjNmU2ZTZlXCIsXCJhdXRvc2F2ZVwiOnRydWUsXCJyZXNpemVJbWFnZXNcIjpudWxsLFwib3BlbkNvdW50ZXJcIjowLFwidmVyc2lvblwiOjE4LFwidW5pdFwiOjEsXCJpc1J1bGVyT25cIjpmYWxzZSxcInVpXCI6XCJcIn0ifQ=="
        

系统环境设置

VScode配置latex

插件

setting

 //Latex//
    
    "editor.largeFileOptimizations": false,
    "latex-workshop.latex.tools": [
        
            // 编译工具和命令et
            "name": "xelatex",
            "command": "xelatex",
            "args": [
                "-synctex=1",
                "-interaction=nonstopmode",
                "-file-line-error",
                "-pdf",
                "%DOCFILE%"
            ]
        ,
        
            "name": "pdflatex",
            "command": "pdflatex",
            "args": [
                "-synctex=1",
                "-interaction=nonstopmode",
                "-file-line-error",
                "%DOCFILE%"
            ]
        ,
        
            "name": "bibtex",
            "command": "bibtex",
            "args": [
                "%DOCFILE%"
            ]
        ,
        
            "name": "latexmk",
            "command": "latexmk",
            "args": [
                "-synctex=1",
                "-interaction=nonstopmode",
                "-file-line-error",
                "-pdf",
                "%DOCFILE%"
            ]
        ,
    ],
    "latex-workshop.latex.recipes": [
        
            "name": "xelatex",
            "tools": [
                "xelatex"
            ],
        ,
        
            "name": "pdflatex",
            "tools": [
                "pdflatex"
            ]
        ,
        
            "name": "xe->bib->xe->xe",
            "tools": [
                "xelatex",
                "bibtex",
                "xelatex",
                "xelatex"
            ]
        ,
        
            "name": "pdf->bib->pdf->pdf",
            "tools": [
                "pdflatex",
                "bibtex",
                "pdflatex",
                "pdflatex"
            ]
        ,
        
            "name": "latexmk",
            "tools": [
                "latexmk"
            ]
        ,
    ],
    
    // ###清楚latex多余文件
    // "latex-workshop.latex.autoClean.run": "onBuilt", //注意结尾是 t 不是 d
    // "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",

系统环境

以上是关于编译环境配置 —— pythonlatex的主要内容,如果未能解决你的问题,请参考以下文章

VScode配置pythonlatex

编译安装Nginx

Ambari 安装

初入 OpenGL ---白屏问题 -- glad.c在查找预编译头遇到意外的文件结尾,是否忘记向源中添加#include "stdafx.h" ?

C语言篇——程序的编译

C语言篇——程序的编译