LATEX is a typesetting system based on Tex, used for typesetting high quality science and math documents. Tex Live
Texlive is a collection environment of Tex that contains compilers such as Pdfletex,xeletex.
Download Address: Http://ctan.mirrors.hoobly.com/systems/texlive/Images/texlive2017-20170524.iso
Installation process: Https://zhuanlan.zhihu.com/p/19779481?columnSlug=LaTeX Visual Studio Code
Visual Studio Code, a powerful Cross-platform editor. Latex Workshop
Latex Wordshop is an extension of Visual Studio code that can be compiled, redirected, and code-prompted.
After installing Tex Live and Vscode, search Latex workshop and install it directly inside the extension.
Latex Workshop default is compiled with Pdflatex, we will change him to Xelatex after the perfect support of Chinese.
The modification method is as follows:
CTRL +,
Search latex-workshop.latex.toolchain-> Right-click Replace in setting-> modified to the following code
"Latex-workshop.latex.toolchain": [
{
"command": "Xelatex",
"args": [
"-synctex=1",
"]- Interaction=nonstopmode ",
"-file-line-error ",
"%doc% "
]
}, {
" command ":" BibTeX ",
" Args ": [
"%docfile% "
]
}, {
" command ":" Xelatex ",
" args ": [
"-synctex=1 ",
"]- Interaction=nonstopmode ",
"-file-line-error ",
"%doc% "
]
}, {
" command ":" Xelatex ",
"args": [
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"%doc%"
]
}
]
This is the end of the configuration, ctrl+alt+b compiled, ctrl+alt+t view.