diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-16 12:53:02 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-16 12:53:02 +0200 |
commit | 5ea5e8696f9fe761951345d634f05f4f4ce37c67 (patch) | |
tree | efc52e80632d0ce063eaa0f6872b5b67a109b32e | |
parent | bbd9f976393712394e0118c08fc1ea42247b6322 (diff) | |
download | guix-5ea5e8696f9fe761951345d634f05f4f4ce37c67.tar guix-5ea5e8696f9fe761951345d634f05f4f4ce37c67.tar.gz |
gnu: Add texlive-jpnedumathsymbols.
* gnu/packages/tex.scm (texlive-jpnedumathsymbols): New variable.
-rw-r--r-- | gnu/packages/tex.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index e49335a36b..bf2e5bfbfa 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -34380,6 +34380,26 @@ somewhat from the standard LaTeX writing style. This package introduces enumerative expressions in Japanese education.") (license license:expat))) +(define-public texlive-jpnedumathsymbols + (package + (name "texlive-jpnedumathsymbols") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/jpnedumathsymbols/" + "tex/latex/jpnedumathsymbols/") + (base32 + "0ap370bp831xxrq45zllyrbhhxs0yv3qb1l5pkpvgsildfk5rk7m"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/jpnedumathsymbols") + (synopsis "Mathematical equation representation in Japanese education") + (description + "Mathematical equation representation in Japanese education differs +somewhat from the standard LaTeX writing style. This package introduces +mathematical equation representation in Japanese education.") + (license license:expat))) + (define-public texlive-libertine (package (name "texlive-libertine") |