texlive

Ling Yu
texlive安装
linux下安装
下载texlive
mkdir /opt/app && /opt/app
wget https://mirrors.cqu.edu.cn/CTAN/systems/texlive/Images/texlive.iso
挂载安装
这里需要注意的是,启动安装脚本时,可以带上可选的命令行参数,常见的参数是配置镜像源(其他的见安装手册),我选择的是清华源(小文件下载速度还是能够接受的)
mount -o loop texlive.iso /mnt/
cd /mnt/
./install-tl -repository https://mirrors.tuna.tsinghua.edu.cn/CTAN/systems/texlive/tlnet
主菜单中可以选择需要安装的宏包,分为scheme(大方案)和collection(更精细的集合)两种方式。我的建议是进入collection,去掉所有除中文、英文的其他外语种的宏包(有需要的可自我保留,之后也可随时下载回来),再去除不常用的LuaLaTeX编译引擎相关的宏包,最终能省大约1个G的空间。其他的宏包建议全部选择,最终大概占用空间7G。
配置环境变量
Add /usr/local/texlive/2023/texmf-dist/doc/man to MANPATH. Add /usr/local/texlive/2023/texmf-dist/doc/info to INFOPATH. Most importantly, add /usr/local/texlive/2023/bin/x86_64-linux to your PATH for current and future sessions. Logfile: /usr/local/texlive/2023/install-tl.log
vim ~/.profile
export MANPATH=${MANPATH}:/usr/local/texlive/2023/texmf-dist/doc/man
export INFOPATH=${INFOPATH}:/usr/local/texlive/2023/texmf-dist/doc/info
export PATH=${PATH}:/usr/local/texlive/2023/bin/x86_64-linux
source ~/.profile