TeX
Live 2020をMacBookにインストールする
注意
- 結城が実行した内容を中心に書いているメモです。自己責任でご利用ください。
- コマンドラインも記載していますが、闇雲に実行しないでください。
- コマンドラインはTeX
Wikiなどに書かれている内容と必ずしも一致しません。
環境
- MacBook Pro 2019
- macOS Catalina
過去にインストールしていたTeX
Live
- TeX Live 2013
- TeX Live 2015
- 個人的に入れたもの
/usr/local/texlive/texmf-local
- これらのファイルはTeX Live
2020をインストール後もそのまま残ります。
今回インストールした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/
- sudoで実行するためパスワードを入力しました。
- すでにインストール済みのTeX
Liveがあるが、設定をインポートするかと尋ねられたので
y
(はい)と答えました。
Import settings from previous TeX Live installation: (y/n): y
Enter command:
というプロンプトが出たのでI
(ハードディスクにインストール)を入力しました。
インストーラの終了
- 4137個のパッケージをインストールするのに37分27秒かかりました。
- 最後に
Welcome to TeX Live!
と表示され、以下の説明が表示されたので読みました。
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.
platex
がTeX Live
2020のものになっているかを念のために確認しました。
$ 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
https://twitter.com/hyuki/status/1360090101057871874