在WSL(Windows Subsystem for Linux)环境下,使用Visual Studio Code (VSCode)配置LaTeX环境的步骤如下:
- 在Ubuntu中安装LaTeX工具链:
sudo apt-update
sudo apt-get install texlive-full
- 安装VSCode并在Windows上启动。
在VSCode中安装LaTeX Workshop扩展:
打开VSCode,在扩展(Extensions)视图中搜索 LaTeX Workshop
并安装。
配置VSCode的settings.json
:
在VSCode中,进入 文件(File) > 首选项(Preferences) > 设置(Settings),然后点击右上角的 {}
图标打开settings.json
文件。
添加以下配置:
{
"latex-workshop.latex.tools": [
{
"name": "xelatex",
"command": "xelatex",
"args": [
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"%DOCFILE%"
]
},
{
"name": "pdflatex",
"command": "pdflatex",
"args": [
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"%DOCFILE%"
]
},
{
"name": "bibtex",
"command": "bibtex",
"args": [
"%DOCFILE%"
]
}
],
"latex-workshop.latex.recipes": [
{
"name": "XeLaTeX",
"tools": [
"xelatex"
],
},
{
"name": "PDFLaTeX",
"tools": [
"pdflatex"
]
},
{
"name": "BibTeX",
"tools": [
"bibtex"
]
},
{
"name": "LaTeXmk",
"tools": [
"latexmk"
]
},
{
"name": "xe->bib->xe->xe",
"tools": [
"xelatex",
"bibtex",
"xelatex",
"xelatex"
]
},
{
"name": "pdf->bib->pdf->pdf",
"tools": [
"pdflatex",
"bibtex",
"pdflatex",
"pdflatex"
]
}
],
"latex-workshop.view.pdf.viewer": "tab",
"latex-workshop.latex.clean.fileTypes": [
"*.aux",
"*.bbl",
"*.blg",
"*.idx",