texlive-euler 是使用 AMS Euler 字体进行数学计算
介绍
在本教程中我们学习如何安装 texlive-euler
在 CentOS 8.
什么是 texlive-euler
提供在 LaTeX 文档中使用 AMS Euler 系列数学字体的设置。 “扎普夫欧拉设计的基本理念是捕捉数学的风味,就像它可能是由一位手写优美的数学家写成的一样。” [concrete-tug] euler 包基于 Knuth 在《具体数学》一书中的宏。 Beton 包支持 Concrete 书的文本字体。
我们可以用 yum
或者 dnf
安装 texlive-euler
在 CentOS 8. 在本教程中,我们讨论了两种方法,但您只需选择一种方法来安装 texlive-euler。
安装 texlive-euler CentOS 8 使用dnf
更新 yum 数据库 dnf
使用以下命令。
sudo dnf makecache --refresh
输出应如下所示:
CentOS Linux 8 - AppStream 43 kB/s | 4.3 kB 00:00
CentOS Linux 8 - BaseOS 65 kB/s | 3.9 kB 00:00
CentOS Linux 8 - ContinuousRelease 43 kB/s | 3.0 kB 00:00
CentOS Linux 8 - Extras 23 kB/s | 1.5 kB 00:00
CentOS Linux 8 - FastTrack 40 kB/s | 3.0 kB 00:00
CentOS Linux 8 - HighAvailability 36 kB/s | 3.9 kB 00:00
CentOS Linux 8 - Plus 24 kB/s | 1.5 kB 00:00
CentOS Linux 8 - PowerTools 50 kB/s | 4.3 kB 00:00
Extra Packages for Enterprise Linux Modular 8 - x86_64 13 kB/s | 9.2 kB 00:00
Extra Packages for Enterprise Linux 8 - x86_64 24 kB/s | 8.5 kB 00:00
Metadata cache created.
更新 yum 数据库后,我们可以安装 texlive-euler
使用 dnf
通过运行以下命令:
sudo dnf -y install texlive-euler
安装 texlive-euler CentOS 8 使用百胜
更新 yum 数据库 yum
使用以下命令。
sudo yum makecache --refresh
输出应如下所示:
CentOS Linux 8 - AppStream 43 kB/s | 4.3 kB 00:00
CentOS Linux 8 - BaseOS 65 kB/s | 3.9 kB 00:00
CentOS Linux 8 - ContinuousRelease 43 kB/s | 3.0 kB 00:00
CentOS Linux 8 - Extras 23 kB/s | 1.5 kB 00:00
CentOS Linux 8 - FastTrack 40 kB/s | 3.0 kB 00:00
CentOS Linux 8 - HighAvailability 36 kB/s | 3.9 kB 00:00
CentOS Linux 8 - Plus 24 kB/s | 1.5 kB 00:00
CentOS Linux 8 - PowerTools 50 kB/s | 4.3 kB 00:00
Extra Packages for Enterprise Linux Modular 8 - x86_64 13 kB/s | 9.2 kB 00:00
Extra Packages for Enterprise Linux 8 - x86_64 24 kB/s | 8.5 kB 00:00
Metadata cache created.
更新 yum 数据库后,我们可以安装 texlive-euler
使用 yum
通过运行以下命令:
sudo yum -y install texlive-euler
如何卸载 texlive-euler CentOS 8
仅卸载 texlive-euler
打包我们可以使用以下命令:
sudo dnf remove texlive-euler
texlive-euler 软件包内容 CentOS 8
/usr/share/licenses/texlive-euler
/usr/share/licenses/texlive-euler/lppl1.txt
/usr/share/texlive/texmf-dist/doc/latex/euler
/usr/share/texlive/texmf-dist/doc/latex/euler/euler.pdf
/usr/share/texlive/texmf-dist/doc/latex/euler/legal.txt
/usr/share/texlive/texmf-dist/tex/latex/euler
/usr/share/texlive/texmf-dist/tex/latex/euler/euler.sty
参考
概括
在本教程中我们学习如何安装 texlive-euler
在 CentOS 8 使用 yum 和 dnf。