LATEX 是基於 Tex 的排版系統,多用於排版高品質的科技類和數學類文檔。 Tex Live
TexLive是tex的集合環境,包含了pdfletex,xeletex等編譯器。
下載地址:http://ctan.mirrors.hoobly.com/systems/texlive/Images/texlive2017-20170524.iso
安裝過程:https://zhuanlan.zhihu.com/p/19779481?columnSlug=LaTeX Visual Studio Code
Visual Studio Code,一款強大的跨平台編輯器。 Latex Workshop
Latex Wordshop 是 Visual Studio Code 下的一個擴充,可編譯、反定向、有代碼提示。
安裝好Tex Live 和 vscode 之後,直接在擴充裡面搜尋Latex Workshop並安裝。
Latex Workshop預設是用pdflatex編譯的,我們將他改成Xelatex後即可完美支援中文。
修改方法如下:
ctrl+,
搜尋latex-workshop.latex.toolchain->右鍵 Replace in Setting->修改為如下代碼
"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%" ] } ]
這樣就配置結束了,ctrl+alt+b編譯,ctrl+alt+t查看。