diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-06-26 15:04:22 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:16:30 +0200 |
commit | aa2672a92d85cf1b3082684606c7c72a600a27e0 (patch) | |
tree | e2240318de118a527eea1e22b8bb7603689fdb84 /gnu | |
parent | 1529c8d7321b1fc7181b593210d5f19c7082d7f4 (diff) | |
download | guix-aa2672a92d85cf1b3082684606c7c72a600a27e0.tar.gz |
gnu: Add texlive-minim-math.
* gnu/packages/tex.scm (texlive-minim-math): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/tex.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 2419043a83..6ea67fcdb5 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -17000,6 +17000,28 @@ contains only their shared lowest-level programming interface, along with their combined format.") (license license:eupl1.2))) +(define-public texlive-minim-math + (package + (name "texlive-minim-math") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/luatex/minim-math/" + "tex/luatex/minim-math/") + (base32 + "0793np84dx47c6wsmqrh3vj2y9w6p0l55nc4xl9b21xvgzzb0b5j"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/minim-math") + (synopsis "Extensive maths for LuaTeX") + (description + "This package provides a simple and highly configurable way to use +Unicode and OpenType mathematics with simple LuaTeX, taking advantage of most +of the engine's new capabilities in mathematical typesetting. Also included +are the proper settings and definitions for almost all Unicode mathematical +characters.") + (license license:eupl1.2))) + (define-public texlive-babel-czech (package (name "texlive-babel-czech") |