2021-02-12   tex   texlive   install   mac 

TeX Live 2020をMacBookにインストールする

注意

環境

過去にインストールしていたTeX Live

今回インストールしたTeX Live

インストールの準備

インストーラinstall-tlのダウンロードと展開

$ curl -O https://ftp.jaist.ac.jp/pub/CTAN/systems/texlive/tlnet/install-tl-unx.tar.gz
$ tar xvf install-tl-unx.tar.gz

インストーラの実行

$ cd install-tl-20210211
$ sudo ./install-tl -no-gui -repository https://ftp.jaist.ac.jp/pub/CTAN/systems/texlive/tlnet/

インストーラの終了

Welcome to TeX Live!

See /usr/local/texlive/2020/index.html for links to documentation.
The TeX Live web site (https://tug.org/texlive/) contains any updates and
corrections. TeX Live is a joint project of the TeX user groups around the
world; please consider supporting it by joining the group best for you. The
list of groups is available on the web at https://tug.org/usergroups.html.

Add /usr/local/texlive/2020/texmf-dist/doc/man to MANPATH.
Add /usr/local/texlive/2020/texmf-dist/doc/info to INFOPATH.
Most importantly, add /usr/local/texlive/2020/bin/x86_64-darwin
to your PATH for current and future sessions.
Logfile: /usr/local/texlive/2020/install-tl.log

シンボリックリンクの追加

$ sudo /usr/local/texlive/2020/bin/x86_64-darwin/tlmgr path add
add_link_dir_dir: /usr/local/bin/ctangle exists; not making symlink.
add_link_dir_dir: /usr/local/bin/cweave exists; not making symlink.
add_link_dir_dir: /usr/local/share/info/dir exists; not making symlink.
$ ls -al `which platex`
... /usr/local/bin/platex -> /usr/local/texlive/2020/bin/x86_64-darwin/platex

サンプル文書の作成

\documentclass{jsarticle}
\usepackage[euler-digits]{eulervm}
\begin{document}
\begin{centering}
\TeX\ Live 2020がインストールできたようです。
$$
\sum_{k=0}^{\infty} \heartsuit^k
$$
\end{centering}
\end{document}
$ platex a.tex
$ dvipdfmx a.dvi
$ open a.pdf

インストールしていたときのTweet

https://twitter.com/hyuki/status/1360090101057871874

 2021-02-12   tex   texlive   install   mac