diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-21 12:57:07 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-21 16:29:42 +0200 |
commit | ab69919cd3e35c209f62860e5efc2e9d527168f0 (patch) | |
tree | 6d3d5a6b8bbdf54195d8c5c9972213d5c4fd36db | |
parent | 1a952e6564095699a499364ec9bd852959cd8560 (diff) | |
download | guix-ab69919cd3e35c209f62860e5efc2e9d527168f0.tar.gz guix-ab69919cd3e35c209f62860e5efc2e9d527168f0.zip |
gnu: Add texlive-scholax.
* gnu/packages/tex.scm (texlive-scholax): New variable.
-rw-r--r-- | gnu/packages/tex.scm | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 3400b019d6..27db9a43f1 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -22708,6 +22708,36 @@ font setting for the OpenType font TeX Gyre Schola for text and math. The missing typefaces like bold math and slanted text are also defined.") (license license:lppl1.3+))) +(define-public texlive-scholax + (package + (name "texlive-scholax") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/fonts/scholax/" + "fonts/afm/public/scholax/" + "fonts/enc/dvips/scholax/" + "fonts/map/dvips/scholax/" + "fonts/opentype/public/scholax/" + "fonts/tfm/public/scholax/" + "fonts/type1/public/scholax/" + "fonts/vf/public/scholax/" + "tex/latex/scholax/") + (base32 + "1jw09a75gw9favzpfkp4kmwf6wz9kp4jsk8f838rk1x76q213rrw"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/scholax") + (synopsis + "Extension of TeXGyreSchola (New Century Schoolbook) with math support") + (description + "This package contains an extension of TeXGyreSchola with extensive +superiors, inferior figures, upright punctuation glyphs added to the Italic +face for a theorem font, plus slanted and bold slanted faces. Math support is +provided by one of two options to @code{newtxmath}, one of which uses an +adaptation of the Fourier math Greek letters.") + (license license:lppl))) + (define-public texlive-schwalbe-chess (package (name "texlive-schwalbe-chess") |