diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-06-19 11:39:06 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:15:47 +0200 |
commit | a2436a424c862781d4df27689e6fe5d17b53dcf0 (patch) | |
tree | e9bd824979adab772be4dca9b9583a6720ab13f8 | |
parent | f87e81793a6caa70abb9a0d1b7d428f2654f1a2b (diff) |
gnu: Add texlive-asana-math.
* gnu/packages/tex.scm (texlive-asana-math): New variable.
-rw-r--r-- | gnu/packages/tex.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 7c26968f03..88d06ef10a 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -896,6 +896,27 @@ a replacement for LaTeX's @code{\\@@alph} and @code{\\@@Alph} macros.") Zygfryd Gardzielewski, reconstructed and digitized as Type 1.") (license license:gfl1.0))) +(define-public texlive-asana-math + (package + (name "texlive-asana-math") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/fonts/asana-math/" + "fonts/opentype/public/asana-math/" + "fonts/truetype/public/asana-math/") + (base32 + "1q934gackj9j7b7bvlq7yv1pr9rxrhhip1as7ywgx8d45ddig2rq"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/asana-math") + (synopsis "Font to typeset maths in Xe(La)TeX and Lua(La)TeX") + (description + "The Asana-Math font is an OpenType font that includes almost all +mathematical Unicode symbols and it can be used to typeset mathematical text +with any software that can understand the MATH OpenType table.") + (license license:silofl1.1))) + (define-public texlive-avantgar (package (name "texlive-avantgar") |