VScode+texlive configuration environment

After installing texlive last time, configure the vscode environment this time


Download

vscode download address


1. Internal settings of VScode

install plugin

VScode has a rich expansion package, which can compile multiple languages, which is really convenient.
First, install the Latex plugin on VSCode.
insert image description here

Configuration Environment

Press F1, enter setjson, select Preferences to open the workspace settings (JSON),
click to enter,
insert image description here
delete {} in the file, and directly copy the following statement:

{
    "latex-workshop.latex.recipes": [{
    "name": "xelatex",
    "tools": [
        "xelatex"
    ]
  }, {
    "name": "latexmk",
    "tools": [
        "latexmk"
    ]
  },
  
  {
    "name": "pdflatex -> bibtex -> pdflatex*2",
    "tools": [
        "pdflatex",
        "bibtex",
        "pdflatex",
        "pdflatex"
    ]
  },

  {
      "name": "xe->bib->xe->xe",
 "tools": [
          "xelatex",
          "bibtex",
          "xelatex",
          "xelatex"
    ]
  }
  ],
  "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",
    "%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"
  ],
  }



2. How to use

Import the template specified by the journal. Most journals will provide TEX templates. For example, you can go to IEEE Template Selector and download it directly.
Restart vscode, open the downloaded and decompressed folder through vscode, select one of the .tex files, and you will find that the code has been marked and can be used.
insert image description here
Click on the upper right corner, you can see the papers in pdf mode in the column.
insert image description here
The configuration work has been completed above, so that you can write a paper happily~

Guess you like

Origin blog.csdn.net/CBCY_csdn/article/details/127591868
Recommended