配置vscode中latex中文环境
时间: 2023-08-20 08:16:09 浏览: 110
要在VS Code中配置LaTeX中文环境,需要进行以下步骤:
1. 安装TeX Live或者MiKTeX。
2. 安装VS Code插件LaTeX Workshop。
3. 在VS Code中打开一个LaTeX文档,然后在左下角选择XeLaTeX编译器。
4. 如果你要使用中文,那么你需要添加一些设置。在VS Code的设置中添加以下内容:
```
"latex-workshop.latex.recipes": [
{
"name": "xelatex",
"tools": [
"xelatex"
]
}
],
"latex-workshop.latex.tools": [
{
"name": "xelatex",
"command": "xelatex",
"args": [
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"-pdf",
"%DOC%"
]
}
],
"latex-workshop.view.pdf.viewer": "tab",
"latex-workshop.view.pdf.zoom": "page-width",
"latex-workshop.view.pdf.ref.viewer": "tab"
```
5. 在你的LaTeX文档中添加以下设置:
```
% !TEX program = xelatex
% !TEX encoding = UTF-8
```
6. 现在你可以使用中文了,只需要在你的LaTeX文档中添加以下内容:
```
\usepackage{xeCJK}
\setCJKmainfont{宋体}
```
这样就可以在VS Code中使用中文了!
阅读全文