macOS安装TeX Live 2024卸载TeX Live 2022

2024-10-02
#Unix #LaTeX

1. 安装TeX Live 2024

查看现有TeX Live版本:

tlmgr --version

tlmgr revision 62273 (2022-02-28 09:52:17 +0100)
tlmgr using installation: /usr/local/texlive/2022
TeX Live (https://tug.org/texlive) version 2022

下载并安装 MacTeX.pkghttps://tug.org/mactex/mactex-download.html

tlmgr --version

tlmgr revision 70080 (2024-02-23 00:13:07 +0100)
tlmgr using installation: /usr/local/texlive/2024
TeX Live (https://tug.org/texlive) version 2024

将 TeX Live 2024 的路径添加到系统路径~/.zshrc中:

export PATH="/usr/local/texlive/2024/bin/universal-darwin:$PATH"
source ~/.zshrc

2. 删除旧版本 TeX Live 2022

使用 ls 列出已安装的 TeX Live 版本目录:

ls /usr/local/texlive

删除 TeX Live 2022 目录:

sudo rm -rf /usr/local/texlive/2022

删除旧的符号链接:

sudo rm -f /usr/local/bin/texlive

确保所有符号链接指向 TeX Live 2024:

sudo ln -s /usr/local/texlive/2024/bin/universal-darwin/* /usr/local/bin/

3. 更新 LaTeX 包

通过 tlmgr 来更新 LaTeX 包:

sudo tlmgr update --self --all

安装了 Latin Modern Math 字体:

sudo tlmgr install lm-math