赞
踩
1. 安装texlive2020
下载
安装
因为我是win10系统,双击打开即可
移除非中英文的安装包;
点击“安装”,等待50分钟左右。安装完成后界面如下:
测试
Cmd 中输入 tex -V 可查看相关信息。
2. 安装VsCode
下载
下载地址:https://code.visualstudio.com/Download
安装
右键以管理员身份运行【VSCodeSetup-x64-1.50.0.exe】
3. VSCode扩展安装
(1)安装中文语言包
打开VSCode,扩展商店中,【Ctrl+Shift+X】,输入chinese,安装完成后重启。
(2)安装LaTex插件
这时候,我们继续在VSCode中写Latex,这里使用LaTex Workshop扩展。
(3)安装拼写检查插件
进一步功能扩展,扩展拼写检查,Code Spell Checker
测试
VSCode中打开一个tex文件
这时候可看到左边菜单栏中出现了TEX插件的图标,如图:
(4) 安装统计字数统计插件
输入LaTex Utilities,进行安装。
重启Vscode,打开.tex文件,vscode下方显示字数,如下图所示。
4. VSCode编译Latex配置
安装插件后,打开VSCode,快捷键【Ctrl+Shift+p】,进入搜索框,输入Preference:Open Settings(JSON) , 进入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"
],
}
参考:【1】https://zhuanlan.zhihu.com/p/38178015
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。