diff options
author | Nicolas Goaziou <[email protected]> | 2023-07-30 16:26:15 +0200 |
---|---|---|
committer | Nicolas Goaziou <[email protected]> | 2023-07-30 19:41:48 +0200 |
commit | 3be8631c3e0e67f20dc5b72ed667f49f51f64695 (patch) | |
tree | 1020427b7031d57630269398024d275b9a2963fa | |
parent | 1603f5a22ec4b42bcbbe0f371b6c2aa1d1a6f8ec (diff) |
gnu: Add texlive-jkmath.
* gnu/packages/tex.scm (texlive-jkmath): New variable.
-rw-r--r-- | gnu/packages/tex.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 8ba2447855..4682c71edd 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -4188,6 +4188,25 @@ characters, and defines macros for markup of vector, matrix and tensor symbols.") (license license:lppl))) +(define-public texlive-jkmath + (package + (name "texlive-jkmath") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/jkmath/" "tex/latex/jkmath/") + (base32 + "0gqm6wfarf20yi3cq2h4lbnqp39fif1wg6gpkvbqpy6zlndbdb0r"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/jkmath") + (synopsis "Macros for mathematics that make the code more readable") + (description + "Inspired by the @code{physicspackage}, the package defines some simple +macros for mathematical notation which make the code more readable or allow +flexibility in typesetting material.") + (license license:lppl))) + (define-public texlive-bibtex8 (package (name "texlive-bibtex8") |