Latex入门教程(1)

警告
本文最后更新于 2021-07-02,文中内容可能已过时。

Latex配置问题总结

1.配置环境变量

https://jokerzhangimg.oss-cn-beijing.aliyuncs.com/image/enviroment.png
环境变量

windows利用powershell可以查看是否安装Latex成功,使用==管理员==身份运行,输入下面的指令

1
2
xelatex 
xelatex -v
https://jokerzhangimg.oss-cn-beijing.aliyuncs.com/image/20210702151907.png
验证是否安装成功
提示
如果环境变量未生效可以试着将其移至首位

2.配置settings.json

新版的配置文件如下

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
"latex-workshop.latex.recipes": [
        {
          "name": "xelatex",
          "tools": [
            "xelatex"
          ]
        },
        {
          "name": "xelatex -> bibtex -> xelatex*2",
          "tools": [
            "xelatex",
            "bibtex",
            "xelatex",
            "xelatex"
          ]
        }
      ],
      "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": "bibtex",
          "command": "bibtex",
          "args": [
            "%DOCFILE%"
          ]
        }
      ],
      "latex-preview.command": "xelatex"