diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-21 12:41:26 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-21 16:29:24 +0200 |
commit | 9bfa8b71c2ae62071461391591a83dd2989df56f (patch) | |
tree | cb10c5183055ba6eaf3a2dbfb53ca28d83e7f16f | |
parent | 8afbebc8a293d72f7d47b53a8dfe0929673cd70d (diff) | |
download | guix-9bfa8b71c2ae62071461391591a83dd2989df56f.tar.gz |
gnu: Add texlive-mathabx.
* gnu/packages/tex.scm (texlive-mathabx): New variable.
-rw-r--r-- | gnu/packages/tex.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 8a1d77b913..f4736e0961 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -17909,6 +17909,30 @@ Mathématiques Appliquées et Industrielles (SMAI).") 4th edition.") (license license:public-domain))) +(define-public texlive-mathabx + (package + (name "texlive-mathabx") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/fonts/mathabx/" + "fonts/source/public/mathabx/" + "fonts/tfm/public/mathabx/" + "tex/generic/mathabx/") + (base32 + "0kj95jl89wh43b9mfqp05hpa5jqyxca7hp9pfk21js2dhysr7x18"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (native-inputs (list texlive-metafont)) + (home-page "https://ctan.org/pkg/mathabx") + (synopsis "Three series of mathematical symbols") + (description + "Mathabx is a set of three mathematical symbols font series. +They are defined by Metafont code. The package includes Plain TeX and LaTeX +support macros. A version of the fonts, in Adobe Type 1 format, is also +available.") + (license license:lppl))) + (define-public texlive-mathalpha (package (name "texlive-mathalpha") |