howtos:how_to_install_tex_live_on_linux
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
howtos:how_to_install_tex_live_on_linux [2024-09-03 02:58 pm] – removed - external edit (Unknown date) 127.0.0.1 | howtos:how_to_install_tex_live_on_linux [2024-09-24 12:47 pm] (current) – hcho | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== How to install TeX Live on Linux ====== | ||
+ | Slackware installs [[https:// | ||
+ | |||
+ | <code bash> | ||
+ | # download the installer | ||
+ | cd /tmp | ||
+ | wget https:// | ||
+ | |||
+ | # uncompress it | ||
+ | tar xvf install-tl-unx.tar.gz | ||
+ | |||
+ | # install it | ||
+ | ( | ||
+ | cd install-tl-[0-9]* | ||
+ | version=$(sed '/ | ||
+ | ./ | ||
+ | --no-interaction \ | ||
+ | --texdir=$HOME/ | ||
+ | --texmflocal=$HOME/ | ||
+ | --texmfhome=$HOME/ | ||
+ | --scheme=basic \ | ||
+ | --paper=letter | ||
+ | |||
+ | # create a symlink for paths | ||
+ | cd ~/ | ||
+ | ln -s $version current | ||
+ | ) | ||
+ | |||
+ | # delete the installer | ||
+ | rm -rf install-tl-* | ||
+ | |||
+ | # add paths to TeX Live | ||
+ | cat << ' | ||
+ | |||
+ | # TeX Live | ||
+ | export PATH=" | ||
+ | export MANPATH=" | ||
+ | export INFOPATH=" | ||
+ | EOT | ||
+ | |||
+ | # read them into the current session | ||
+ | . ~/ | ||
+ | </ | ||
+ | |||
+ | Use [[https:// | ||
+ | |||
+ | You can use [[https:// | ||
+ | |||
+ | For reference management, [[https:// |