1.安裝texlive
Windows系統(tǒng)下latex:texlive2016和texstudio
texstudio 相當于編程時的IDE逢慌,可以使用這個經(jīng)驗貼安裝texstudio攻泼,然后在texstudio中編寫tex文檔忙菠。所以如果你準備用VSCode來編寫tex文檔的話纺弊,可以不用安裝texstudio淆游。
2.安裝并配置VSCode
2.1 安裝VSCode
VSCode下載
next犹菱,next就安裝好了腊脱。
2.2 配置VSCode
(1)安裝LaTeX Workshop插件
(2)修改user setting
從
點擊上圖標記的部分悍抑,選擇打開settings.json
配置文件如下:
{
"latex-workshop.latex.recipes": [{
"name": "xelatex",
"tools": [
"xelatex"
]
}, {
"name": "latexmk",
"tools": [
"latexmk"
]
},
{
"name": "pdflatex -> bibtex -> pdflatex*2",
"tools": [
"pdflatex",
"bibtex",
"pdflatex",
"pdflatex"
]
}
],
"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"
],
}
重啟VSCode
3.簡單使用
(1)打開文件夾佑女,之后所有產(chǎn)生的文件都在此文件夾下
(2)新建tex文件
擴展名是.tex
(3)編寫tex文檔
在test.tex中輸入:
\documentclass[UTF8]{ctexart}
\usepackage{ctex}
\begin{document}
你好,Latex
\end{document}
預覽可以選擇在VSCode的標簽頁中打開,也可以選擇在瀏覽器中打開劫恒〗蜗伲或者點擊右上角的預覽按鈕族壳。
注意:當你更改了tex文檔的時候仿荆,需要先進行編譯,然后才能預覽锦亦,否則內(nèi)容還是修改之前的內(nèi)容
預覽的效果: