pre
- 安装
tex live
并配置全局环境变量 - 安装
vscode
禁用fcitx的虚拟键盘
fcitx的虚拟键盘会占用编辑快捷键ctrl+alt+b
vscode 安装
安装插件Latex Workshop
magic comment
行首加上
% !TEX program = xelatex
指定xelatex
编译
这是使用xelatex > bibtex > xelatex > xelatex
过程编译。如果不加则默认使用pdflatex。
官方文档中不建议这么做,兼容性成疑,这里使用下面介绍的方式
配置xelatex工具链
打开setting.json,加入
"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