【环境配置】LaTeX 环境配置

Introduction

OverLeaf 无疑是非常好用的在线 LaTeX工具。但在使用中也时常遇到编译慢、掉线等问题。因此,在此整理一套本地 LaTeX 的环境配置教程,以方便后续使用。

Install Guide

安装 texlive

点击 清华大学 LaTeX 镜像站,选择 textlive202x.iso 下载即可。

  • 注意,安装环境不可以有中文

在下载好之后,点击 .iso 文件,然后点击里面的 install-tl-windows.bat 会进入 Windows Texlive 的安装。

Linux 应该是使用 install-tl 脚本

配置环境变量

在 Windows 系统的 PATH 里加上 texlive 的安装路径。

  • 注意,路径的后缀应该是 202x/windows/

然后,使用 latex -v 检查是否输出版本信息。

1
2
3
4
5
6
7
8
9
10
11
12
pdfTeX 3.141592653-2.6-1.40.26 (TeX Live 2024)
kpathsea version 6.4.0
Copyright 2024 Han The Thanh (pdfTeX) et al.
There is NO warranty. Redistribution of this software is
covered by the terms of both the pdfTeX copyright and
the Lesser GNU General Public License.
For more information about these matters, see the file
named COPYING and the pdfTeX source.
Primary author of pdfTeX: Han The Thanh (pdfTeX) et al.
Compiled with libpng 1.6.43; using libpng 1.6.43
Compiled with zlib 1.3.1; using zlib 1.3.1
Compiled with xpdf version 4.04

如果有相应版本信息输出,则说明安装成功。

VSCode 配置

插件安装

安装插件 LaTeX Workshop。

环境配置

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
{
"latex-workshop.latex.tools": [
{
"name": "xelatex",
"command": "xelatex",
"args": [
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"%DOC%"
]
},
{
"name": "bibtex",
"command": "bibtex",
"args": ["%DOCFILE%"]
}
],
"latex-workshop.latex.recipes": [
{
"name": "xelatex",
"tools": ["xelatex"]
},
{
"name": "xelatex -> bibtex -> xelatex*2",
"tools": ["xelatex", "bibtex", "xelatex", "xelatex"]
}
]
}

理论上即可正确使用 Latex。

MD 我的怎么环境变量有问题,回头有时间重启一下再看看怎么个事儿


【环境配置】LaTeX 环境配置
https://hypoxanthineovo.github.io/2024/05/06/常用技术笔记/LaTeX/
作者
贺云翔 | Yunxiang He
发布于
2024年5月6日
许可协议