windows安装配置vscode+latex
程序员文章站
2022-06-01 12:06:31
...
windows安装vscode+latex
windows安装vscode+latex
主要介绍安装vscode和latex配置
安装latex
tex拥有多个版本,我们这里选择安装 TexLive
选择线上安装,参考链接
安装和配置vscode
- 安装继续参考上述链接;
- 配置:
安装好VScode之后需要再配置一下setting.json,添加下列文本到json文件中。
{
"latex-workshop.latex.tools": [
{
"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.message.update.show": false,
"latex-workshop.latex.recipes": [
{
"name": "xelatex ➞ bibtex ➞ xelatex × 2",
"tools": [
"xelatex",
"bibtex",
"xelatex",
"xelatex"
]
},
{
"name": "latexmk ????",
"tools": [
"latexmk"
]
},
{
"name": "latexmk (latexmkrc)",
"tools": [
"latexmk_rconly"
]
},
{
"name": "latexmk (lualatex)",
"tools": [
"lualatexmk"
]
},
{
"name": "pdflatex ➞ bibtex ➞ pdflatex × 2",
"tools": [
"pdflatex",
"bibtex",
"pdflatex",
"pdflatex"
]
},
{
"name": "Compile Rnw files",
"tools": [
"rnw2tex",
"latexmk"
]
},
{
"name": "Compile Jnw files",
"tools": [
"jnw2tex",
"latexmk"
]
},
{
"name": "tectonic",
"tools": [
"tectonic"
]
}
],
"latex-workshop.latex.recipe.default": "lastUsed",
"git.ignoreMissingGitWarning": true,
"latex-workshop.view.pdf.viewer": "tab"
}
上一篇: tomcat调优
推荐阅读
-
在Vultr VPS主机上安装使用Windows Server的教程及评测
-
联想天逸f30用ghost安装XP停在Windows开机画面怎么办?
-
Centos7.3安装和配置Tomcat8
-
MySQL的安装、启动和基础配置 —— linux版本
-
JavaWeb入门——在Windows环境下安装Tomcat服务器
-
安装配置php-fpm来搭建Nginx+PHP的生产环境
-
windows 2003服务器安装 IIS6.0和IIS自带FTP服务器图文教程
-
在Windows中配置Rsync同步文件的方法
-
Win7安装和配置Apache2.4服务器的详细方法
-
windows下jsp+mysql网站环境配置方法第1/2页