diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-21 12:15:24 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-21 16:29:04 +0200 |
commit | 89b198c369ff153e559b8d4dc48c1743ab122245 (patch) | |
tree | da323672932ee1a118b98c16e7cd274e26374217 | |
parent | 46c88a7e0786b85326a9572af6f48e9e2273e5d4 (diff) | |
download | guix-89b198c369ff153e559b8d4dc48c1743ab122245.tar.gz guix-89b198c369ff153e559b8d4dc48c1743ab122245.zip |
gnu: Add texlive-euler-math.
* gnu/packages/tex.scm (texlive-euler-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 2f6e299706..aac0a16b90 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -11546,6 +11546,27 @@ ellipsograph. This package extends the functionalities of the @code{curve2e} package.") (license license:lppl1.3c))) +(define-public texlive-euler-math + (package + (name "texlive-euler-math") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/fonts/euler-math/" + "fonts/opentype/public/euler-math/" + "tex/latex/euler-math/") + (base32 + "01vj4nqmac078176m3cj97lx4nnrs395208vxc6671c90fvirg1s"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/euler-math") + (synopsis "OpenType version of Hermann Zapf's Euler maths font") + (description + "@file{Euler-Math.otf} is an OpenType version of Hermann Zapf's Euler +maths font. A style file @file{euler-math.sty} is provided as a replacement +of the @code{eulervm} package for LuaLaTeX and XeLaTeX users.") + (license (list license:silofl1.1 license:lppl1.3+)))) + (define-public texlive-evangelion-jfm (package (name "texlive-evangelion-jfm") |