1、下載並安裝texlive2019
下載,解壓

雙擊install-tl-advanced.bat開始安裝,

點擊“Advanced”進入高級安裝

點擊“Customize”來取消勾選不必要的包
(全部安裝也不大,2G左右,但是耗時多了30分鍾
為了檢驗是否安裝成功,可以打開命令行窗口,執行”tex –version”命令,如果返回tex的版本信息,則安裝成功。
執行”latex –version”或”latex -v”命令查看pdfTeX的版本信息。
texlive自帶的前端不好用太丑了。。texstudio是一個跨平台的,texlive 的編輯、編譯、查看的IDE環境,免費且使用方便。因此還需要安裝texStudio。
但是我這里使用的是VS Code.
二、安裝Latex Workshop
在VSCode的拓展商店中搜索”Latex Workshop“並安裝。
三、修改Latex Workshop配置
1、Ctrl+,或者左下方設置圖標,打開VSCode設置頁面

2、點擊上圖紅框內圖標,自動打開配置文件“settings.json”

3. 把下面的json加到settings.json中
{ // Latex workshop "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.latex.recipes": [ { "name": "xelatex", "tools": [ "xelatex" ] }, { "name": "latexmk", "tools": [ "latexmk" ] }, { "name": "pdflatex -> bibtex -> pdflatex*2", "tools": [ "pdflatex", "bibtex", "pdflatex", "pdflatex" ] } ], "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" ] }
//我的bibtex出了點問題,可以換成其他后端
四、使用
1.新建tex格式文件,注意文件路徑不能包含中文
2. 輸入
\documentclass{article} \begin{document} Here comes \LaTeX! \end{document}
3. Ctrl+Alt+B進行編譯,產生PDF文件(ctrl+S也會自動保存文件並編譯)
4. Ctrl+Alt+V查看PDF文件

參考鏈接:
1. https://blog.csdn.net/qq_38386316/article/details/80272396
2. https://zhuanlan.zhihu.com/p/43133114
3. https://zhuanlan.zhihu.com/p/38178015
